Download Bollinger Band Trend Filter AFL (Script)
BOLLINGER BAND TREND FILTER 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 BOLLINGER BAND TREND FILTER 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 Bollinger Band Trend Filter 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 | //------------------------------------------------------------------------------ // Formula Name : Bollinger Band Trend Filter AFL FOR AMIBROKER 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("Bollinger Band Trend Filter"); ST_TR=EMA(C,5); MID_TR=EMA(C,10); INT_TR=EMA(C,20); LNG_TR=EMA(C,40); ST_VAL = IIf(ST_TR > BBandTop(C,25,0.5),1, IIf(ST_TR<bbandtop (C,25,0.5) AND ST_TR>BBandBot(C,25,0.5),0,-1)); MID_VAL = IIf(MID_TR > BBandTop(C,50,0.5),1, IIf(MID_TR</bbandtop><bbandtop (C,50,0.5) AND MID_TR>BBandBot(C,50,0.5),0,-1)); Int_VAL = IIf(INT_TR > BBandTop(C,100,0.5),1, IIf(INT_TR</bbandtop><bbandtop (C,100,0.5) AND INT_TR>BBandBot(C,100,0.5),0,-1)); LNG_VAL = IIf(LNG_TR > BBandTop(C,200,0.5),1, IIf(LNG_TR</bbandtop><bbandtop (C,200,0.5) AND LNG_TR>BBandBot(C,200,0.5),0,-1)); ST_TF = IIf(ST_TR > BBandTop(C,25,0.5),1, IIf(ST_TR</bbandtop><bbandtop (C,25,0.5) AND ST_TR>BBandBot(C,25,0.5),0,-1))*10; MID_TF = IIf(MID_TR > BBandTop(C,50,0.5),1, IIf(MID_TR</bbandtop><bbandtop (C,50,0.5) AND MID_TR>BBandBot(C,50,0.5),0,-1))*10; INT_TF = IIf(INT_TR > BBandTop(C,100,0.5),1, IIf(INT_TR</bbandtop><bbandtop (C,100,0.5) AND INT_TR>BBandBot(C,100,0.5),0,-1))*30; LNG_TF = IIf(LNG_TR > BBandTop(C,200,0.5),1, IIf(LNG_TR</bbandtop><bbandtop (C,200,0.5) AND LNG_TR>BBandBot(C,200,0.5),0,-1))*40; TF= ST_TF + MID_TF + INT_TF + LNG_TF; // TREND FILTER RANKING TFRNK = IIf(TF>= 0.5,3, IIf(TF< =0.4999 AND TF>=0.25,2, IIf(TF< =0.2499 AND TF>=0,1, IIf(TF< -0.009 AND TF>= -0.25,-1, IIf(TF< =-.251 AND TF>=-0.5,-2, IIf(TF< -0.501,-3,0)))))); // TREND FILTER HISTORICAL REFERENCING TF_5 = Ref(TF,-5); TF_10 = Ref(TF,-10); TF_15 = Ref(TF,-15); TF_20 = Ref(TF,-20); TF_25 = Ref(TF,-25); TF_30 = Ref(TF,-30); TF_40 = Ref(TF,-40); TF_50 = Ref(TF,-50); TF_60 = Ref(TF,-60); TF_70 = Ref(TF,-70); TF_80 = Ref(TF,-80); TF_90 = Ref(TF,-90); TF_100 = Ref(TF,-100); TF_110 = Ref(TF,-110); TF_120 = Ref(TF,-120); TF_130 = Ref(TF,-130); TF_140 = Ref(TF,-140); // TREND FILTER COLOR Clr_TF = 32 + SelectedValue( TF) * 32; Clr_TF_5 = 32 + SelectedValue( TF_5) * 32; Clr_TF_10 = 32 + SelectedValue( TF_10) * 32; Clr_TF_15 = 32 + SelectedValue( TF_15) * 32; Clr_TF_20 = 32 + SelectedValue( TF_20) * 32; Clr_TF_25 = 32 + SelectedValue( TF_25) * 32; Clr_TF_30 = 32 + SelectedValue( TF_30) * 32; Clr_TF_40 = 32 + SelectedValue( TF_40) * 32; Clr_TF_50 = 32 + SelectedValue( TF_50) * 32; Clr_TF_60 = 32 + SelectedValue( TF_60) * 32; Clr_TF_70 = 32 + SelectedValue( TF_70) * 32; Clr_TF_80 = 32 + SelectedValue( TF_80) * 32; Clr_TF_90 = 32 + SelectedValue( TF_90) * 32; Clr_TF_100 = 32 + SelectedValue( TF_100) * 32; Clr_TF_110 = 32 + SelectedValue( TF_110) * 32; Clr_TF_120 = 32 + SelectedValue( TF_120) * 32; Clr_TF_130 = 32 + SelectedValue( TF_130) * 32; Clr_TF_140 = 32 + SelectedValue( TF_140) * 32; TFCLR = IIf(TFRNK==3,ColorRGB(0,255,0), IIf(TFRNK==2,Colorgreen, IIf(TFRNK==1,colorYELLOW, IIf(TFRNK==-1,ColorRGB(252,70,0), IIf(TFRNK==-2,ColorRGB(255,80,80), IIf(TFRNK==-3,ColorRGB(217,0,0),colorGrey40)))))); // PRICE PLOT Plot(TF,"BB TREND FILTER",TFCLR ,styleLINE); Plot (0,"",colorGrey50,styleLine); Plot (-.5,"",colorGrey50,styleDashed); Plot (0.5,"",colorGrey50,styledashed); Filter = 1; AddTextColumn( FullName(), "Full name", 77 , colorDefault ); AddColumn( ST_VAL , "ST_VAL", 1.2); AddColumn( MID_VAL , "MID_VAL", 1.2); AddColumn( INT_VAL , "INT_VAL", 1.2); AddColumn( LNG_VAL , "LNG_VAL", 1.2); AddColumn( TF, "TF", 1.2, ColorHSB( 128 + Clr_TF, 255, 255 ), ColorHSB( Clr_TF, 255, 255 ) ); AddColumn( TF_5, "TF_5",1.2, ColorHSB( 128 + Clr_TF_5, 255, 255 ), ColorHSB( Clr_TF_5, 255, 255 ) ); AddColumn( TF_10, "TF_10",1.2, ColorHSB( 128 + Clr_TF_10, 255, 255 ), ColorHSB( Clr_TF_10, 255, 255 ) ); AddColumn( TF_15, "TF_15",1.2, ColorHSB( 128 + Clr_TF_15, 255, 255 ), ColorHSB( Clr_TF_15, 255, 255 ) ); AddColumn( TF_20, "TF_20",1.2, ColorHSB( 128 + Clr_TF_20, 255, 255 ), ColorHSB( Clr_TF_20, 255, 255 ) ); AddColumn( TF_25, "TF_25",1.2, ColorHSB( 128 + Clr_TF_25, 255, 255 ), ColorHSB( Clr_TF_25, 255, 255 ) ); AddColumn( TF_30, "TF_30",1.2, ColorHSB( 128 + Clr_TF_30, 255, 255 ), ColorHSB( Clr_TF_30, 255, 255 ) ); AddColumn( TF_40, "TF_40",1.2, ColorHSB( 128 + Clr_TF_40, 255, 255 ), ColorHSB( Clr_TF_40, 255, 255 ) ); AddColumn( TF_50, "TF_50",1.2, ColorHSB( 128 + Clr_TF_50, 255, 255 ), ColorHSB( Clr_TF_50, 255, 255 ) ); AddColumn( TF_60, "TF_60",1.2, ColorHSB( 128 + Clr_TF_60, 255, 255 ), ColorHSB( Clr_TF_60, 255, 255 ) ); AddColumn( TF_70, "TF_70",1.2, ColorHSB( 128 + Clr_TF_70, 255, 255 ), ColorHSB( Clr_TF_70, 255, 255 ) ); AddColumn( TF_80, "TF_80",1.2, ColorHSB( 128 + Clr_TF_80, 255, 255 ), ColorHSB( Clr_TF_80, 255, 255 ) ); AddColumn( TF_90, "TF_90",1.2, ColorHSB( 128 + Clr_TF_90, 255, 255 ), ColorHSB( Clr_TF_90, 255, 255 ) ); AddColumn( TF_100, "TF_100",1.2, ColorHSB( 128 + Clr_TF_100, 255, 255 ), ColorHSB( Clr_TF_100, 255, 255 ) ); AddColumn( TF_110, "TF_110",1.2, ColorHSB( 128 + Clr_TF_110, 255, 255 ), ColorHSB( Clr_TF_110, 255, 255 ) ); AddColumn( TF_120, "TF_120",1.2, ColorHSB( 128 + Clr_TF_120, 255, 255 ), ColorHSB( Clr_TF_120, 255, 255 ) );; AddColumn( TF_130, "TF_130",1.2, ColorHSB( 128 + Clr_TF_130, 255, 255 ), ColorHSB( Clr_TF_130, 255, 255 ) ); AddColumn( TF_140, "TF_140",1.2, ColorHSB( 128 + Clr_TF_140, 255, 255 ), ColorHSB( Clr_TF_140, 255, 255 ) ); |
【 More About Bollinger Band Trend Filter for Amibroker AFL ⋡
♌
DOWNLOAD BOLLINGER BAND TREND FILTER 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.
♍
BOLLINGER BAND TREND FILTER 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.
♊
BOLLINGER BAND TREND FILTER 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 Bollinger Band Trend Filter AFL (Script)”