Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Dr. Elders “Fallen Angel Screener” for Amibroker (AFL)
data
about 6 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

1. PIXEL4220

error at line 1

2. data

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

3. aman21175

how works ????? not working

4. administrator

As the name suggests this is an exploration formula.

Leave Comment

Please login here to leave a comment.

Back