New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
RSI moving average crosses (9 day ma crosses the 35 day ema)
I'm trying to create a scan that will identify where the 9 day ma of the RSI(14) crosses the 35 day ema of the RSI(14)
I tried the following but get an error message:
and [ma(9,RSI(14)) x ema(35,RSI(14))]
I'd really appreciate your help.
0
Comments
Assuming you want a simple moving average for the first term, you just need an "s" (for "simple", vs. "e" for "exponential) in front of the "ma" :
and [sma(9,RSI(14)) x ema(35,RSI(14))]
If you should want to do a different time frame, all elements need to have the time frame modifier, so for instance
and [weekly sma(9, weekly RSI(14)) x weekly ema(35, weekly RSI(14))]
not
and [weekly sma(9, RSI(14)) x weekly ema(35, RSI(14))]