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

Top 25 Volume Explorer for Amibroker (AFL)

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

Scans for stocks with volume spikes.

Similar Indicators / Formulas

Three Day Balance Points
Submitted by nvkha over 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji almost 15 years ago
DIX50,20,10
Submitted by morgen over 14 years ago
4-Day-Range Switch
Submitted by santho_sd over 14 years ago

Indicator / Formula

Copy & Paste Friendly
no=Param( "Swing", 2, 1, 55 );
tsl_col=ParamColor( "Color", colorCycle );

res=HHV(H,no);
sup=LLV(L,no);
avd=IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0));
avn=ValueWhen(avd!=0,avd,1);
tsl=IIf(avn==1,sup,res);

Plot(tsl, _DEFAULT_NAME(), tsl_col, styleStaircase);

V20=MA(V,20);
V3=MA(V,3);
V320=(V3/V20)>2;
V120=(V/V20)>2;
Buy=Cross(C,tsl);
Sell=Cross(tsl,C);


Filter=Buy OR Sell OR V120 OR V320;


AddColumn(IIf(V120,V120,0),"V120",1.0,colorWhite,IIf(V120,colorDarkGreen,Null));
AddColumn(IIf(V320,V320,0),"V320",1.0,colorWhite,IIf(V320,colorDarkGreen,Null));
AddColumn(IIf(Buy,1,IIf(Sell,-1,0)),"b/s",1.0,colorWhite,IIf(Buy,colorDarkGreen,IIf(Buy,colorRed,Null)));

2 comments

1. arm

NICE

2. umesh

Nice work

Leave Comment

Please login here to leave a comment.

Back