Download Intraday Trading AFL (Script)
INTRADAY TRADING 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 INTRADAY TRADING 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 Intraday Trading 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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | //------------------------------------------------------------------------------ // Formula Name : Intraday Trading 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(); //------------------------------------------------------------------------------ Version(5.20); xx=BarIndex();x=xx;Lx=LastValue(x); nbar=Param("N Pivot Bars",3,2,50,1); npiv=Param("N Pivots lookback period",1,1,50,1); PivotSymmetry=ParamToggle("Use Symmetric Pivots","Off|On",0); CleanPivots=ParamToggle("Use Clean Pivots","Off|On",0); srStyle=ParamToggle("S/R Style","Off|On",1); if (PivotSymmetry) { fc=1; pk=H>Ref(HHV(H,nbar*fc),-1) AND Ref(HHV(H,nbar),nbar)< =H; pk=pk AND Lx-ValueWhen(pk,x)>nbar*fc; tr=L<ref (LLV(L,nbar*fc),-1) AND Ref(LLV(L,nbar),nbar)>=L; tr=tr AND Lx-ValueWhen(tr,x)>nbar*fc; } else { fc=2; pk=H>Ref(HHV(H,nbar*fc),-1) AND Ref(HHV(H,nbar),nbar)< =H; pk=pk AND Lx-ValueWhen(pk,x)>nbar*fc; tr=L</ref><ref (LLV(L,nbar*fc),-1) AND Ref(LLV(L,nbar),nbar)>=L; tr=tr AND Lx-ValueWhen(tr,x)>nbar*fc; } px0=ValueWhen(pk,x,0); tx0=ValueWhen(tr,x,0); px1=ValueWhen(pk,x,1); tx1=ValueWhen(tr,x,1); px2=ValueWhen(pk,x,2); tx2=ValueWhen(tr,x,2); px3=ValueWhen(pk,x,3); tx3=ValueWhen(tr,x,3); ph0=ValueWhen(pk,H,0); tl0=ValueWhen(tr,L,0); ph1=ValueWhen(pk,H,1); tl1=ValueWhen(tr,L,1); ph2=ValueWhen(pk,H,2); tl2=ValueWhen(tr,L,2); ph3=ValueWhen(pk,H,3); tl3=ValueWhen(tr,L,3); if (CleanPivots) { pk=IIf(pk AND px0<tx0 AND ph0>ph1,False,pk); tr=IIf(tr AND px0>tx0 AND tl0<tl1 ,False,tr); pk=IIf(pk AND px2>tx1 AND ph1< =ph2,False,pk); tr=IIf(tr AND tx2>px1 AND tl1>=tl2,False,tr); px0=ValueWhen(pk,x,0); tx0=ValueWhen(tr,x,0); px1=ValueWhen(pk,x,1); tx1=ValueWhen(tr,x,1); px2=ValueWhen(pk,x,2); tx2=ValueWhen(tr,x,2); px3=ValueWhen(pk,x,3); tx3=ValueWhen(tr,x,3); ph0=ValueWhen(pk,H,0); tl0=ValueWhen(tr,L,0); ph1=ValueWhen(pk,H,1); tl1=ValueWhen(tr,L,1); ph2=ValueWhen(pk,H,2); tl2=ValueWhen(tr,L,2); ph3=ValueWhen(pk,H,3); tl3=ValueWhen(tr,L,3); } GraphXSpace=20; SetChartOptions(0,chartShowDates); SetBarFillColor(IIf(C>O,ColorRGB(0,175,0),IIf(C< =O,ColorRGB(175,0,0),colorLightGrey))); Plot(C,"\nPrice",IIf(C>O,ColorRGB(0,175,0),IIf(C< =O,ColorRGB(175,0,0),colorLightGrey)),64,0,0,0); //plotting circles //PlotShapes(shapeSmallCircle*tr,IIf(Lx-ValueWhen(tr,x)>nbar,ColorRGB(0,100,0),colorWhite),0,L,-10); //PlotShapes(shapeSmallCircle*pk,IIf(Lx-ValueWhen(pk,x)>nbar,ColorRGB(255,0,0),colorWhite),0,H,10); if(srstyle) { miny=Status("axisminy"); maxy=Status("axismaxy"); for (i=1;i< =npiv;i++) { rr=Ref(ValueWhen(pk,H,i),-nbar); rr=IIf(rr>maxy OR rr<miny ,Null,rr); ss=Ref(ValueWhen(tr,L,i),-nbar); ss=IIf(ss>maxy OR ss</miny><miny ,Null,ss); Plot(rr,"",colorBlue,styleNoLine|styleDots,0,0,0); Plot(ss,"",colorRed,styleNoLine|styleDots,0,0,0); Buy = Cross(H,rr); Sell= Cross(ss,L); PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorTurquoise, 0,L, Offset=-25); PlotShapes(IIf(Sell, shapeDownArrow, shapeNone),colorOrange, 0,H, Offset=-25); } } else { rr=ValueWhen(pk,H); rr1=IIf(rr AND BarsSince(pk)>nbar,rr,Null); rr2=IIf(rr AND BarsSince(pk)< =nbar,rr,Null); ss=ValueWhen(tr,L); ss1=IIf(ss AND BarsSince(tr)>nbar,ss,Null); ss2=IIf(ss AND BarsSince(tr)< =nbar,ss,Null); Plot(rr1,"",colorRed,1); Plot(rr2,"",colorLightGrey,styleDots|styleNoLine); Plot(ss1,"",colorGreen,1); Plot(ss2,"",colorLightGrey,styleDots | styleNoLine); } Title = EncodeColor(colorWhite)+ "Intraday Trades" + EncodeColor(colorYellow) +" Open-"+O+" "+"High-"+H+" "+"Low-"+L+" "+ "Close-"+C+" "+ "Vol= "+ WriteVal(V)+"\n"+EncodeColor(colorTurquoise)+" BUY ABOVE - "+RR+" "+EncodeColor(colorOrange)+ " SELL BELOW - "+SS+" "; _SECTION_END(); GfxSetBkMode( 1 ); GfxSetTextColor( colorBrown ); GfxSelectSolidBrush(colorBlack); // this is the box background color GfxSelectFont( "Tahoma", 20, 100 ); pxHeight = Status( "pxchartheight" ) ; xx = Status( "pxchartwidth"); Left = 1100; width = 280; x = 5; x2 = 270; y = pxHeight; //GfxSelectPen( colorGreen, 1); // broader color GfxRoundRect( x, y - 60, x2+10, y+8 , 7, 7 ) ; //GfxTextOut( ( " Trading System "),88,y-165); GfxTextOut( (" "),27,y-160); GfxTextOut( ("BUY ABOVE : "+RR+" "), 13, y-58) ; // The text format location GfxTextOut( ("SELL BELOW : "+SS+""), 13, y-30); |
【 More About Intraday Trading for Amibroker AFL ⋡
♌
DOWNLOAD INTRADAY TRADING 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.
♍
INTRADAY TRADING 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.
♊
INTRADAY TRADING 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 Intraday Trading AFL (Script)”