Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Volume Scan report for Amibroker (AFL)
This afl gives SCAN REPORT of current script Volume greater then last 5 days Volume.
Backtest and give ur comments.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | //Shows if intraday volume is greater than average volume of last 5 days (customizable) with moving average //line. Plot ( V , "Volume" , ParamColor ( "Color" , colorBlueGrey ), styleHistogram | styleThick ); Avgvol=0; if ( Interval ()< inDaily ) { n = round (3600*6.75/ Interval ()); //number of bars in the day d = Param ( "Lookback days" ,5,1,30,1); //averaging period barnum = BarsSince ( Day ()!= Ref ( Day (),-1)); //bar number from start of the day for (i=0; i<n; i++) { VarSet ( "vol" +i, IIf (i==barnum, V ,0)); } for (i=0; i<n; i++) { Avgvol= IIf (barnum==i, Sum ( VarGet ( "vol" +i),n*d)/d,Avgvol); } Plot (Avgvol, "Average Volume" , colorWhite , styleLine ); } /* AddColumn(V,"V",1.0,colorDefault,colorDefault,50); AddColumn(barnum,"bar",1.0); AddColumn(n,"n",1.0); AddColumn(d,"d",1.0); AddColumn(Avgvol,"avg",1.0,colorDefault,colorDefault,50); for( i=0; i <n; i++ ) AddColumn(VarGet("vol"+i),"vol"+i,1.0); Filter=1; */ |
1 comments
Leave Comment
Please login here to leave a comment.
Back
doesn’t work