Actionable Swing Support and Resistance AFL Techniques That Work GREAT
SWING SUPPORT AND RESISTANCE FOR AMIBROKER AFL
Want more Profit from Forex?
Then you’re in the right place.
Because today we’re going to show you the exact techniques that we use to generate maximum profit per month.
The best part?
All of this proven strategies are working GREAT.
Let’s do this!
We introduce you Actionable Swing Support and Resistance for Amibroker AFL with swing trading afl amibroker. This Amibroker AFL makes your trading perfect. This afl for all those people who want to trade again n again n again daily for small profits, that means this afl formula is for scalpers. So see first trend in max time frames, and trade on that . For small profits with small stop loss. So scalp the trend with the formula.
Watch deeply in Image Where to buy and where to Sell.
Here is the Image of AFL [amibroker formula language].
The Image show you the swing buy signal. As well as it shows you where to sell signal. This afl auto generate support and Resistance line which make easy to understand.
HERE IS Actionable Swing Support and Resistance 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 | //------------------------------------------------------------------------------ // Formula Name : Swing Support and Resistance for Amibroker AFL by pipschart // Author : KrT group // Uploaded : 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("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", colorDefault ), styleNoTitle | ParamStyle ("Style") | GetPriceStyle() ); _SECTION_END(); _SECTION_BEGIN("SWING SUPPORT RESISTANCE"); LB= Param("Look Back Periods",10,1,30,1); R=ValueWhen(Cross(MA(C,LB),C),HHV(H,LB),1); S=ValueWhen(Cross(C,MA(C,LB)),LLV(L,LB),1); Color=IIf(O>C,colorBlack,colorBlue); Plot (R,"Res",colorLime,8+16); Plot (s,"Sup",colorRed,8+16); Plot (C,"Close",color,64,32); GraphXSpace=4; _SECTION_END(); |
Download AFL
How to use for Amibroker AFL
- Download the Valid Supply-Demand Zone for Amibroker AFL.
- Now copy the afl file and paste it to \Program Files\AmiBroker\Formulas\Custom. [For 32 bit]
- If You have 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.
Tags amibroker afl
- Previous The Ultimate RSI AND ADX Intraday Profit Generator Amibroker AFL [ Works GREAT in 2020 ]
- Next Latest T3 Buy Sell Update Afl for Amibroker
Great Code