RSI buy Scanning for Amibroker (AFL)
shravan2964 about 13 years ago Amibroker (AFL)
The RSI of the current bar is greater than 30 AND The RSI of the current bar is less than 70 AND The RSI of 10 bars ago is less than 30
Indicator / Formula
Copy & Paste Friendly
C1 = Volume > 100000 AND Close > 50;
Buy = RSIa( Close, 14 ) > 30
AND RSIa( Close, 14 ) < 70
AND Ref( RSIa( Close, 14 ), -10 ) < 30;
Filter = C1 AND Buy;
AddColumn(C,"close");0 comments
Leave Comment
Please login here to leave a comment.