Strict Bullish Histogram, Oversold, Crossover Scanner for Amibroker (AFL)
curiosus over 12 years ago Amibroker (AFL)
Shortlists stocks that has the following criteria:
- Bullish histogram (from past 3 days)
- RSI below 30
- MACD bullish crossover
Note: To be used as Automatic Analysis > Scan
Indicator / Formula
Copy & Paste Friendly
Hist1 = MACD() - Signal();
Macd2 = Ref(MACD(),-1);
Sign2 = Ref(Signal(),-1);
Hist2 = Macd2 - Sign2;
Macd3 = Ref(MACD(),-2);
Sign3 = Ref(Signal(),-2);
Hist3 = Macd3 - Sign3;
Buy = Hist1 > Hist2 AND Hist2 > Hist3 AND RSI() < 30 AND Cross( MACD(), Signal()); 0 comments
Leave Comment
Please login here to leave a comment.