daytrade RSI for Amibroker (AFL)
greg about 14 years ago Amibroker (AFL)
KISS
Keep it simple and stupid
my indicator for daytrade.
Indicator / Formula
Copy & Paste Friendly
Q2 = RSI (5) < 50 ;
Q3 = Cross ( StochK (15,9) , StochD (15,9));
W1 = Cross ( Signal (12,26,9) ,MACD (12,26)) ;
W2 = Cross ( RSI(5) , 80);
Buy = Q3 AND q2;
Sell = W1 OR W2;
Buy = ExRem ( Buy, Sell);
Sell = ExRem (Sell, Buy);0 comments
Leave Comment
Please login here to leave a comment.