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(14) bounce around 50 scan
Hello Guys,
Would any one help me write a RSI(14) scan to find stocks which are bounce around 50.
Appreciate your help.
Regards,
Arjun
0
Comments
// begin scan - RSI around 50
[group is sp500] // you can change this to whatever stocks you like
// in the last ten days, RSI has not be above 55
and [max(10, RSI(14)) < 55]
// in the last ten days, RSI has not been below 45
and [min(10, RSI(14)) > 45]
// end scan
You can play with the 10 day max and min, and also the 55 and 45 upper and lower limits to see what works best.
Lines that begin with two slashes, //, are comments; the scan engine does not see anything after the // symbols.
Pls. see the chart RSI(13) just bounce 50 line
[group is sp500]
and [sma(5, RSI(13)) > 5 days ago sma(5, RSI(13))]
and [max(5, sma(5, RSI(13))) < 60]
and [min(5, sma(5, RSI(13))) > 40]
Again, you can play with all the parameters.