Volume Histogram for Amibroker AFL (100% Work Fast)
VOLUME HISTOGRAM FOR AMIBROKER AFL
Volume Histogram allows you to get unlimited amount of buy sell signal for all your needs. What you have to do is just load the Amibroker AFL Code into you software and watch your buy sell signal in a matter of minutes. Volume Histogram works efficiently by study. Search internet about volume strategy and use this resources for specific patterns of your need.
This afl formula is for scalpers. So see first trend in max time frames, and trade on that . Take small profits with small stop loss. So scalp the trend with the formula.
Image of AFL [amibroker formula language].
In picture See the drawing tools deeply. You can fine where to buy signal. Also you can find out the sell signal. As a mention Volume Histogram Afl gives you perfect taking profit signal. When Signal appears, you may take signal without any hesitation.
VOLUME HISTOGRAM FOR AMIBROKER AFL CODE
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | //------------------------------------------------------------------------------ // Formula Name : VOLUME HISTOGRAM afl by pipschart // Author : KrT group // Uploader : www.pipschart.com // E-mail : info@pipschart.com // Amibroker Blog : www.pipschart.com/amibroker // Origin : Modified & Collected from different sources. //------------------------------------------------------------------------------ _SECTION_BEGIN("KrT group"); GfxSetBkMode(1); X=750; Y=1; Font=10; GfxSelectFont("Impact",Font*2.2, 550);GfxSetTextColor(colorRed);GfxTextOut ("KrT group",x,y); GfxSelectFont("Impact",Font*2.2, 550);GfxSetTextColor(colorGreen);GfxTextOut ("RESEARCH",x+120,Y); _SECTION_END(); //------------------------------------------------------------------------------ // Volume Bar Chart | //=========================================================================| _SECTION_BEGIN("Volume Bar Chart"); SetChartOptions(0,chartShowArrows|chartShowDates); SetChartOptions(0,chartShowArrows|chartShowDates); Title = ("Marar Volume Histogram - " + Name()+" " + Date() +" "+Interval(2) +" "+ EncodeColor(colorLime)+",Open "+Open +" ,High "+H+" ,Low "+L+" ,Close "+C+" "+"{{VALUES}}"); Vlp=Param("Volume lookback period",150,20,300,10); SetChartOptions(0,chartShowArrows|chartShowDates); DTL=Param("Linear regression period",60,10,100,10); Vlp=Param("Volume lookback period",30,20,300,10); Vrg=MA(V,Vlp);// average volume rg=(H-L); arg=Wilders(rg,30); Vh=V>Ref(V,-1) AND Ref(V,-1)>Ref(V,-2); Cloc=C-L; x=(H-L)/Cloc; x1=IIf(Cloc=0,arg,x); Vb=V>Vrg OR V>Ref(V,-1); ucls=x1<2; dcls=x1>2; mcls=x1<2.2 AND x1>1.8 ; Vlcls=x1>4; Vhcls=x1<1.35; j=MA(C,5); TLL=LinRegSlope(j,40) ; Tlm=LinRegSlope(j,10) ; tls=LinRegSlope(j,3); upbar=C>Ref(C,-1); dnbar=C<Ref(C,-1); CloseUp = C>Ref(C,-1); Closedn = C<Ref(C,-1); VolUp = V>Ref(V,-1); VolDn = V<Ref(V,-1); bb1 = upbar AND CloseUp AND ucls AND L>Ref(L,-1); bb2 = upbar AND VolUp; bb3 = dnbar AND CloseDn AND VolDn; bb4 = dnbar AND CloseDn AND C>Ref(L,-1); db1 = dnbar AND CloseDn AND dcls; db2 = dnbar AND VolUp ; db3 = upbar AND CloseDn AND VolUp; db4 = upbar AND CloseDn AND C<Ref(L,-1) AND dcls; db5 = upbar AND CloseUp AND ucls AND L<Ref(L,-1); db6 = upbar AND CloseUp AND dcls; bb=(bb1 OR bb2 OR bb3 OR bb4); db=(db1 OR db2 OR db3 OR db4 OR db5 OR db6); Plot(Vrg,"average volume",colorYellow,32|styleThick); Plot(WMA(V,150),"Long term average",colorOrange,32|styleThick); GraphXSpace = 5; GraphXSpace = 5; SetBarFillColor( IIf(bb AND tls>0, colorGreen,IIf(db AND tls<0,colorDarkRed,colorWhite)) ); PlotOHLC(0,V,0,V,"price",IIf(bb AND tls>0, colorLime,IIf(db AND tls<0,colorRed,colorGrey50)), styleCandle ) ; Plot(Vrg,"average volume",colorYellow,32|styleThick); PlotOHLC( Vrg, Vrg, 0, 0, "", 31,styleCloud ); |
Download AFL
How to use Amibroker AFL
0 thoughts on “Volume Histogram for Amibroker AFL (100% Work Fast)”