Get Unlimited Amount with Color Bollinger Bands (Amibroker AFL)
COLOR BOLLINGER BANDS FOR AMIBROKER AFL
If you want to get Unlimited Amount of profit in forex or other stock market than you may use Color Bollinger Bands. Color Bollinger Bands formula is for intraday traders. This amibroker AFL formula provides you a clear idea whats going on.
In this article what you get for?
- Get clear Image of Amibroker Afl
- Download Color Bollinger Bands Amibroker AFL.
- Raw code of this formula.
- How to set Amibroker Afl in platform.
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.
Here is the 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 Bollinger Bands Afl gives you perfect taking profit signal. When Signal appears, you may take signal without any hesitation.
HERE IS COLOR BOLLINGER BANDS 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 | //------------------------------------------------------------------------------ // Formula Name : COLOR BOLLINGER BANDS 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(); //------------------------------------------------------------------------------ _SECTION_BEGIN("Colorf Bollinger Bands"); P = ParamField("Price field",-1); Period = Param("Short Periods", 20, 15, 30, 1 ); Width = Param("Short Width", 2, 1, 10, 1 ); TopCond=BBandTop( P, Period, Width )>Ref(BBandTop( P, Period, Width ),-1); MidCond=MA(C,Period)>Ref(MA(C,Period),-1); BotCond=BBandBot( P, Period, Width )>Ref(BBandBot( P, Period, Width ),-1); UpColor=IIf(TopCond AND MidCond,colorDarkBlue,colorDarkRed); DownColor=IIf(MidCond AND BotCond,colorDarkBlue,colorDarkRed); PlotOHLC(BBandTop( P, Period, Width ),BBandTop( P,Period, Width ),MA(C,Period),MA(C,Period), "", UpColor, styleCloud+styleNoLabel +styleNoTitle, Null, Null, Null, -2 ); PlotOHLC(MA(C,Period),MA(C,Period),BBandBot( P, Period, Width ),BBandBot( P, Period, Width ), "", DownColor, styleCloud+styleNoLabel +styleNoTitle, Null, Null, Null, -2 ); Plot(BBandBot( P, Period, Width ),"",colorLime,styleThick+styleNoTitle, Null, Null, Null, -1); Plot(BBandTop( P, Period, Width ),"",colorLime,styleThick+styleNoTitle, Null, Null, Null, -1); Plot(MA(C,Period),"",colorLime,styleThick+styleNoTitle, Null, Null, Null, -1); Title=Name(); Filter=TopCond AND MidCond AND BotCond; AddColumn(V,"volume",1.0); _SECTION_END(); _SECTION_BEGIN("Price"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) )); Plot( C, "Close", ParamColor("Color", colorGold ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); _SECTION_END(); |
Download AFL
How to use Color Bollinger Bands AFL for Amibroker AFL
- Also find our other Article:
BOLINGER BAND AFL FOR TRADING PLATFORM
Tags amibroker afl
0 thoughts on “Get Unlimited Amount with Color Bollinger Bands (Amibroker AFL)”