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.
Scanning for the EMA of the RSI
My basic chart includes the RSI and a moving average of the RSI. Visually, it usually gives me a quick grasp of the flow and direction of the RSI.
How do I scan for either the slope of the moving average or today's ema of rsi > yesterdays ema of rsi
0
Comments
However, you can scan for symbols that have a slope of some value you specify. For instance,
and [slope(20, RSI(20)) > 0]
would get symbols where the 20 day slope of RSI 20 is positive.
The documentation for slope doesn't indicate that it takes an expression (RSI in this case) but the example scans show that it does.
https://stockcharts.com/docs/doku.php?id=scans:indicators#slope_slope
The documentation for ema shows that it does take an expression, so can just substitute any indicator
and [ema(20, RSI(21)) > 1 day ema(20, RSI(21))]
In both cases, notice the double set of parentheses, one set for each indicator. If you don't include them both, the syntax checker will give you an error.
- - and [slope(4, weekly ema(12,RSI(20))) > 0]
and [weekly slope(4, weekly ema(12, weekly RSI(20))) > 0]