Download WMA Volume Analysis for Amibroker AFL (Script)
WMA VOLUME ANALYSIS AFL SCRIPT
One of the best Scripts that Listing Indicators/Formulas for Amibroker (AFL).
Download Amibroker AFL Script. It’s easy to download.
Meet Our Amibroker AFL Script
WHY WMA VOLUME ANALYSIS FOR AMIBROKER AFL SCRIPT?
Because This AFL is one of the best indicator for any kind of trading market like Stock or Forex Market.
Form AFL Script, you may get a lot of Buy Sell Signal as well as direction what to do.
Also, Raw Source Code of Amibroker Afl include and define here.
How to Setup Amibroker AFL Script
- Copy the Amibroker AFL Code.
- Create a new file and Paste the code in the file. Name of the file should be XXXX.afl
- Copy XXXX.afl file to \Program Files\Amibroker\Formula\
- For 64 bit operating system, Copy XXXX.afl file to \Program Files(x86)\AmiBroker\Formulas\
- Open Amibroker and Open a Blank Chart
- Go to Charts and apply/drag-and-drop the newly added indicator over blank chart.
- That’s it, you are done. Now you will be able to use the new indicator.
Download WMA Volume Analysis For Amibroker AFL Script
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | //------------------------------------------------------------------------------ // Formula Name : 15 DAYS WMA VOLUME ANALYSIS AFL for Amibroker 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(); //------------------------------------------------------------------------------ _SECTION_BEGIN("V-spiker by mrtq13-moded by Southwind"); SetChartBkGradientFill( ParamColor("BgTop", colorBlack), ParamColor("BgBottom", colorBlack),ParamColor("Titleblock",colorDarkGrey )); upcolor=ParamColor("UpCandleColor",colorBlack ); downcolor=ParamColor("DownCandleColor",colorBlack ); //Volume Change Volwma=WMA(V,15); Volchange=(((V-Volwma)/Volwma)*100); Vol=(ROC(V,1)); //GraphXSpace = Param("Xspace", 10, 2, 20, 1); // vol with std LBP = Param("Look Back", 15, 0, 150,1 ); Mean = MA(ln(V),LBP); StD = StDev(ln(V),LBP); xp3 = exp(mean + 2*std); //3 band xp2 = exp(mean + 1.5*std); //2 nd band xp1 = exp(mean + 1*std); // 1st band xm = exp(mean); // avg xn1 = exp(mean - 1*std); // -1 band xn2 = exp(mean - 1.5*std); //-2 band //Plot(xp3,"", colorGrey50,1|4096); //Plot(xp2,"", colorGrey50,1|4096); //Plot(xp1,"", colorPaleBlue,1|4096); //Plot(xm, "AvgVol", ParamColor( "AvgColor", colorOrange),ParamStyle("AvgStyle",styleLine|styleThick|styleDots,maskAll),1|4096); Plot(Volwma, "AvgVol", ParamColor( "AvgColor", colorGold ),ParamStyle("AvgStyle",styleLine|styleThick|styleDots,maskAll),1|4096); //Plot(xn1,"",colorBlue,1|4096); ////Plot(xn2,"", 1,1|4096); upbar = C > Ref(C,-1); downbar = C< Ref(C,-1); barcolor2=IIf(downbar,colorRed, IIf(upbar, 2,19) ); upbar = C > Ref(C,-1); downbar = C< Ref(C,-1); O = IIf(downbar, V, 0); C = IIf(downbar, 0,V); L=0; H = V; //ColorHighliter = IIf(upbar, upcolor,IIf(downbar, downcolor,colorDarkGreen)); //SetBarFillColor( ColorHighliter ); pds = 10; V1 = V/MA(V,10); V2 = V/MA(V,20); V3 = V/MA(V,50); barcolor = IIf(V<MA(V,pds),colorRed,colorWhite); SetBarFillColor( barcolor ); PlotOHLC( O,H,L,C, "", barColor2, ParamStyle("CandleStyle",styleCandle,maskAll)); /* PcntInc = NumToStr((V-xm)/xm*100,2); _N(Title =Name() + " " + ": {{VALUES}}"+ WriteIf(V," |\\c33 TotVol =\\c35 ","") +WriteVal(V, 1.0)+"\n"+EncodeColor(colorTurquoise)+ WriteIf(V > XM*(1 + (LBP * .01)),"Volume's("+PcntInc+")% ABOVE its("+Lbp+") days average","")+ WriteIf(V < XM*(1 + (LBP * .01)),"Volume's("+PcntInc+")% BELOW its("+Lbp+") days average","")); */ Change = (((V- Ref(V,-1))*100)/ V); _N(Title =Name() + " " +EncodeColor(colorWhite)+" Total Vol: " +WriteVal(V,format=1)+ EncodeColor(49) +" Vol Change : " + WriteIf(Vol>0,EncodeColor(08),EncodeColor(04)) +WriteVal(Vol,format=1.2)+ "% " + EncodeColor(colorWhite)+"| Vol-Breakout: "+ WriteIf(barcolor==colorWhite, EncodeColor(colorGreen)+"Yes", EncodeColor(colorRed)+"No")+ "\n"+ EncodeColor(colorWhite)+"WMA Vol: "+ WriteVal(Volwma,format=1) + EncodeColor(05) +WriteIf(V > Volwma," Volume's("+WriteVal(Volchange,format=1.2)+")% ABOVE its(15) days WMA","") + EncodeColor(04) +WriteIf(V < Volwma, " Volume's("+WriteVal(Volchange,format=1.2)+")% BELOW its(15) days WMA","")); //WriteIf(V > XM*(1 + (LBP * .01)),"Volume's("+PcntInc+")% ABOVE its("+Lbp+")daysaverage","")+ //WriteIf(V < XM*(1 + (LBP * .01)),"Volume's("+PcntInc+")% BELOW its("+Lbp+")daysaverage","")); _SECTION_END(); _SECTION_BEGIN("Spiker_Shadow"); C1 = Ref(C, -1); uc = C > C1; dc = C < = C1; ud = C > O; dd = C < = O; green = 1; blue = 2; yellow = 3; red = 4; white = 5; VType = IIf(ud, IIf(uc, green, yellow), IIf(dd, IIf(dc, red, blue), white)); /* green volume: up-day and up-close*/ gv = IIf(VType == green, V, 0); /* yellow volume: up-day but down-close */ yv = IIf(VType == yellow, V, 0); /* red volume: down-day and down-close */ rv = IIf(VType == red, V, 0); /* blue volume: down-day but up-close */ bv = IIf(VType == blue, V, 0); uv = gv + bv; uv1 = Ref(uv, -1); /* up volume */ dv = rv + yv; dv1 = Ref(dv, -1); /* down volume */ VolPer = Param("Adjust Vol. MA per.", 10, 1, 255, 1); ConvPer = Param("Adjust Conv. MA per.", 4, 1, 255, 1); MAuv = TEMA(uv, VolPer ); mauv1 = Ref(mauv, -1); MAdv = TEMA(dv, VolPer ); madv1 = Ref(madv, -1); MAtv = TEMA(V, VolPer );//total volume Converge = (TEMA(MAuv - MAdv, ConvPer)); Converge1 = Ref(Converge, -1); ConvergeUp = Converge > Converge1; ConvergeOver = Converge > 0; rising = ConvergeUp AND ConvergeOver; falling = !ConvergeUp AND ConvergeOver; /*convergenceOscillator = Param("Show Oscillator", 0, 0, 1, 1); OscillatorOnly = Param("Show Oscillator Only", 0, 0, 1, 1); if(convergenceOscillator OR OscillatorOnly){ Plot(Converge, "Bull/Bear Volume Convergence/Divergence", colorViolet, 1|styleLeftAxisScale|styleNoLabel|styleThick); Plot(0,"", colorYellow, 1|styleLeftAxisScale|styleNoLabel); }*/ upshadow=ParamColor("UpShadowColor",colorDarkYellow ); downshadow=ParamColor("DownShadowColor",colorDarkGrey ); riseFallColor = IIf(rising, upshadow,downshadow); riseFallShadows = Param("Show RiseFallShadows", 1, 0, 1, 1); if(riseFallShadows){ Plot(IIf(rising OR falling, 1, 0), "", riseFallColor,ParamStyle("ShadeStyle",styleHistogram|styleArea|styleThick|styleOwnScale|styleNoLabel,maskAll)); /*Plot(IIf(rising OR falling, 1, 0), "", riseFallColor, styleHistogram|styleArea|styleOwnScale|styleNoLabel);*/ } //GraphXSpace =5; //_N(Title=""); _SECTION_END(); _SECTION_BEGIN("Graphics"); GrpPrm=Param("Graphic Space",-5,-10,10); GraphXSpace=GrpPrm; _SECTION_END(); _SECTION_BEGIN("Volume Oscillator"); Periods = Param("V_Ocil_periods", 2, 2, 5); PlusDM= IIf(High>Ref(High,-1) AND Low>=Ref(Low,-1), High-Ref(High,-1), IIf(High>Ref(High,-1) AND Low<ref (Low,-1) AND High-Ref(High,-1)>Ref(Low,-1)-Low, High-Ref(High,-1),0)); Vm=log(EMA(V,3)); Buy= (C-L)*Vm+ (H-O)*Vm + IIf(C>O,(C-O)*Vm,0) + PlusDM*Vm + IIf(Ref(C,-1)<o ,(O-Ref(C,-1))*Vm,0); MinDM = IIf(Low<Ref(Low,-1) AND High<=Ref(High,-1), Ref(Low,-1)-Low, IIf(High>Ref(High,-1) AND Low<ref (Low,-1) AND High-Ref(High,-1)<Ref(Low,-1)-Low, Ref(Low,-1)-Low, 0)); Sell= (H-C)*Vm + (O-L)*Vm + IIf(C<O,(O-C)*Vm,0) + MinDM*Vm + IIf(Ref(C,-1)>O,(Ref(C,-1)-O)*Vm,0); Wm=Wilders(Wilders(Buy,Periods)-Wilders(Sell,Periods),Periods); Buy=Cross(Wm,0); Sell=Cross(0,Wm); PlotShapes( IIf( Buy, shapeHollowSmallCircle, shapeNone ), colorOrange, layer = 0, yposition = H, offset = 8); PlotShapes( IIf( Buy, shapeHollowSmallCircle, shapeNone ), colorWhite, layer = 0, yposition = H, offset = 14); //Title = Name() + " " + WriteVal(V, 1.0) + WriteIf(Buy," |\\c33 Volume :-Buy",""); _SECTION_END(); _SECTION_BEGIN("SkyBlue's Animated BkGround"); for( i = 1; i < BarCount; i++ ) z = (GetPerformanceCounter()/100)%256; anim=ColorHSB( ( i + z ) % 256, 255, 100 ); SetChartBkColor(anim); RequestTimedRefresh(1); _SECTION_END(); |
【 More About WMA Volume Analysis for Amibroker AFL ⋡
♌
DOWNLOAD WMA AFL CODE
Download Amibroker AFL Script directly from here. If you are not familiar with copy-paste to input AFL then you may download a raw file from here. This gives you a direct AFL File. Just download it and copy the file and paste it into the Amibroker formulas folder. Open Amibroker Software and watch the AFL in AFL Section.
♍
WMA VOLUME ANALYSIS AFL CHART
In the trading world, there is one line expressed. Chart Can Talk. Yes, that’s true. In every chart like Amibroker AFL Chart or MT4 Chart can talk. The chart shows you the actual situation in the market. Buy-Sell Signal may generate and interpret clearly. That’s why anyone can find out the reality.
♊
WMA VOLUME ANALYSIS AFL VIDEO
Every Stock Trading or Forex trading needs a platform where anyone can get the freedom to analyze. This Amibroker AFL Script gives you those opportunities. But if you do not catch the real signal in real-time then you lose money as well as waste time. For this reason, watch videos first and then earn. Don’t lose money.
What Are You Waiting For?
Find the Latest Amibroker AFL Scripts. It’s absolutely Free!
AMIBROKER AFL SCRIPTS ➜
“The parable of those who spend their substance in the way of Allah is that of a grain of corn: it groweth seven ears, and each ear Hath a hundred grains.Allah giveth manifold increase to whom He pleaseth: And Allah careth for all and He knoweth all things.” | Al-Quran (Surah Al-Baqara, 261)
0 thoughts on “Download WMA Volume Analysis for Amibroker AFL (Script)”