Skip to main content

Dr. Elders “Fallen Angel Screener” for Amibroker (AFL)

data over 8 years ago Amibroker (AFL)

  • Rating:
    5 / 5 (Votes 1)
  • Tags:
    amibroker, exploration

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

2. data
over 8 years ago

What is the error you are getting? Not getting any errors here.

Leave Comment

Please login here to leave a comment.