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

Deel - Average Dollar Price Volatility for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
amibroker, exploration

This is a conversion of the Metastock exploration into Amibroker. Tested and working.

Similar Indicators / Formulas

Three Day Balance Points
Submitted by nvkha over 9 years ago
DIX50,20,10
Submitted by morgen over 13 years ago
4-Day-Range Switch
Submitted by santho_sd over 13 years ago
Volume Spike Exploration
Submitted by ngocleasing over 13 years ago

Indicator / Formula

Copy & Paste Friendly
AddColumn(H - L, "First Day Range");
AddColumn(Ref(H - L, -1), "Second Day Range");
AddColumn(Ref(H - L, -2), "Third Day Range");
AddColumn(Ref(H - L, -3), "Fourth Day Range");
AddColumn(Ref(H - L, -4), "Fifth Day Range");

Range = (H - L + (Ref(H, -1) - Ref(L, -1)) + 
					(Ref(H, -2) - Ref(L, -2)) +
					(Ref(H, -3) - Ref(L, -3)) +
					(Ref(H, -4) - Ref(L, -4))) / 5;

AddColumn(Range, "Averange 5 Day Range");

Filter = EMA(C * V, 5) > 500000;

0 comments

Leave Comment

Please login here to leave a comment.

Back