Fibonacci Bollinger Bands AFL: Calculating Actual Price
BOLLINGER FIBONACCI BANDS AFL FOR AMIBROKER
Fibonacci Bollinger Bands AFL design by the concept of Fibonacci level. This Amibroker Formula Language is a modify afl. In trading world most of the trader use intraday Fibonacci afl, intraday Fibonacci trend brake system afl, Fibonacci pivots afl but not found the actual price level. This Afl fulfill this need. This Amibroker AFL combine with Bollinger bands and Fibonacci level. These Bollinger bands feature Fibonacci retrenchments to very clearly show areas of support and resistance .
The Fibonacci Bollinger Bands indicator is based on the same principles as the standard Bollinger Bands indicator developed by John Bollinger. The indicator bases its upper and lower bands on volatility just like the Bollinger Bands indicator does, but instead of using two bands its uses its Fibonacci all level. It is noted that this Bollinger Fibonacci Bands as used on the VT Forex Trading platform.
In figure there is three types of level are used. Three are upper side bands and tree are lower side bands. Also there is use middle bands which is mention by Green color. With the honer of those bands price are move by its way. So for that you can easily catch out the actual level of stock or pair price.
Image of AFL [amibroker formula language].
In image we see that there are use tree color like Red, Aqua and Yellow. Those color are use both upper and lower bands which is mention in image. upper and lower levels are denoted by 1.6180, 2.6180 and 4.2360. Price are move by those Fibonacci Retrenchment concept.
Bollinger Fibonacci Bands 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 | //------------------------------------------------------------- // Formula Name: BOLLINGER FIBONACCI BANDS AFL for Amibroker AFL by pipschart // Author : KrT group // Up-loader : 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(); //----------------------------------------------------------------- /* as used in the VT trading platform */ GraphXSpace = 3; per = Param("Period",20,10,55,1); TH =IIf(Ref(C,-1) > H,Ref(C,-1),H); TL=IIf(Ref(C,-1) < L,Ref(C,-1),L); TR = TH-TL; TRa= Wilders(TR,per); UpperBand3 =MA( C, per) + ( 4.2360 * TRa); UpperBand2=MA( C, per) + ( 2.6180 * TRa); UpperBand1=MA( C, per) + ( 1.6180 * TRa); MidPoint=MA(C, per); LowerBand1=MA( C, per) - ( 1.6180 * TRa); LowerBand2=MA( C, per) - ( 2.6180 * TRa); LowerBand3=MA( C, per) - ( 4.2360 * TRa); Plot(MidPoint,"",colorGreen,4); Plot(UpperBand1,"",colorRed,1); Plot(LowerBand1,"",colorRed,1); Plot(UpperBand2,"",colorAqua,1); Plot(LowerBand2,"",colorAqua,1); Plot(UpperBand3,"",colorYellow,1); Plot(LowerBand3,"",colorYellow,1); PlotOHLC(O,H,L,C,"",colorWhite,64); |
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.
Watch Our Video Tutorial | How To Set Amibroker?
“And (remember) when your Lord proclaimed: “If you give thanks , I will give you more (of My Blessings), but if you are thankless (i.e. disbelievers), verily! My Punishment is indeed severe.” | Al-Quran 14 [Ibrahim]:7
Tags amibroker afl
- Previous KPBB Htrsystem AFL:Amibroker Formula For Day Trading(update)
- Next Higher High Lower High AFL Analyze Trading Performance
it is very good, but one piece of information is lacking. That is the ration” text” is not mentioned against the band. Pl remodify so that value is mentioned agaist the band.