Dr. Elders “Fallen Angel Screener” for Amibroker (AFL)
data over 8 years ago Amibroker (AFL)
This formula should find stocks that are very strongly oversold.
Indicator / Formula
Copy & Paste Friendly
c1 = (C-LLV(L, 200)) / (HHV(H, 200) - LLV(L, 200))*100;
c2 = c1 < 10;
c3 = MA(V * C, 52) > 3000000;
c4 = V * C > MA(V * C, 52);
c5 = H >= HHV(H, 10);
Filter = c2 AND c3 AND c4 AND c5;
AddColumn(Volume,"Volume",1.0);
AddColumn(Close, "Close", 1.2);4 comments
Leave Comment
Please login here to leave a comment.
error at line 1
What is the error you are getting? Not getting any errors here.
how works ????? not working
As the name suggests this is an exploration formula.