How to Use Bollinger Bands For Amibroker (AFL)
BOLLINGER BANDS AFL FOR TRADING PLATFORM
Bollinger Bands afl makes trading smoothly. This afl used by every trader and set amibroker afl in every platform. Bollinger Bands Developed by John Bollinger, Bollinger bandwidth afl allows users to compare volatility and relative price levels over a period time.
Bollinger Bands are envelopes which surround the price bars on a chart. They are plotted two standard deviations away from a simple moving average. Because standard deviation is a measure of volatility, the bands adjust themselves to ongoing market conditions. They widen during volatile market periods and contract during less volatile periods.
Bollinger Bands has many concept. Also by using this concept many trader modify rules & make profitable strategy such as double Bollinger band strategy. Also in market place there is lot of modify Bollinger Bands concept which is known as a double bollinger bands afl, bollinger band and cross over system for amibroker afl, bollinger band stop loss, bollinger bands reversal, bollinger %b afl, bb squeeze indicator afl, squeeze momentum indicator afl etc.
Follow Bollinger Bands buy sell signals Below :
Image of Simple Bollinger Band AFL [amibroker formula language].
BOLLINGER BAND 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 | //------------------------------------------------------------------------------ // Formula Name : Bollinger Bands 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 Logo"); 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(); //------------------------------------------------------------------------------ pds=Param("Periods",20,2,200); sd=Param("Standard Deviations",2, 0.01,10); alpha=2/(pds+1); mt=AMA( C, alpha ); ut=AMA( mt, alpha ); dt=((2-alpha)*mt-ut)/(1-alpha); mt2=AMA(abs(C-dt), alpha ); ut2=AMA(mt2,alpha ); dt2=((2-alpha)*mt2-ut2)/(1-alpha); but=dt+sd*dt2; blt=dt-sd*dt2; Plot( C, "Price", colorBlack, styleCandle ); Plot( but, "Upper band", colorRed ); Plot( blt, "Lower band", colorRed ); |
Download Bollinger Band AFL
How to use afl for Amibroker
- Download Amibroker AFL File.
- Now copy the afl file and paste it to \Program Files\AmiBroker\Formulas\Custom. [For 32 bit]
- Have you 64 bit operating system? Than paste it to : \Program Files(x86)\AmiBroker\Formulas\Custom.
- Go to formula section of Amibroker and you will get the afl in Custom folder.
Don’t Know How To Set Amibroker? Than Just Watch
Tags amibroker afl
0 thoughts on “How to Use Bollinger Bands For Amibroker (AFL)”