Download Target Achiever for Amibroker AFL (Script)
TARGET ACHIEVER 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 TARGET ACHIEVER 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 Target Achiever 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 | //------------------------------------------------------------------------------ // Formula Name : TARGET ACHIEVER 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(); //------------------------------------------------------------------------------ //Target Achiever // // Best use 15Min Time Interval for NSE & BSE Stock// //Scan Analysis Support-Yes// //Explorer Support- Yes// //Back test Support- Yes// Odd=13; CoefOdd=round(Odd/2); Even=12; Coefeven=Even/2; Coefeven2=Coefeven+1; CongestionPercent=2.8; TriangularOdd=MA(MA(C,CoefOdd),CoefOdd); TriangularEven=MA(MA(C,Coefeven),Coefeven2); finalMov_avg=IIf(Odd > even,triangularOdd,TriangularEven); Color=colorBrightGreen; tickercolor=colorWhite; Plot(finalMov_avg,"",IIf(C < finalmov_avg,colorRed,Color),styleLine|styleThick); Plot(C,"",tickercolor,styleCandle); Title=Name()+"..."+"( "+WriteIf(Odd > even,WriteVal(Odd,1),WriteVal(even,1))+" ) Period "+EncodeColor(Color)+"Triangular"+WriteIf(Odd > even,"ODD","EVEN")+" Moving Average"+"..."+EncodeColor(colorBlack)+ WriteIf(C < finalMov_avg,"Close is "+EncodeColor(colorRed)+"Below"+EncodeColor(colorBlack)+" Moving Average by ","Close is"+EncodeColor(colorBrightGreen)+" Above"+EncodeColor(colorBlack)+" Moving Average by ")+"("+WriteVal(((C/finalMov_avg)-1)*100,1.1)+"% )"+"\n"+WriteIf(finalmov_avg-Ref(finalmov_avg,-1)>0," Slope Of Average is UP : ","Slope Of Average is DOWN :")+WriteIf((((C/finalMov_avg)-1)*100 < = CongestionPercent AND ((C/finalMov_avg)-1)*100 >= -CongestionPercent),EncodeColor(colorYellow)+" with Price Congestion / Divergence to Average ","")+"\n"+WriteIf(Ref(C,-1) < Ref(finalmov_avg,-1) AND C > finalmov_avg,EncodeColor(colorGreen)+"Possible Change in Trend From Down to Up"+"\n"+" OR Short Term Correction of Previous Trend",WriteIf(Ref(C,-1) > Ref(finalmov_avg,-1) AND C < finalmov_avg,EncodeColor(colorRed)+"Possible Change in Trend From Up to Down "+"\n"+" OR Short Term Correction to Previous Trend",""))+"\n"+WriteIf(C > finalmov_avg,EncodeColor(colorGreen)+"Close has been above Moving Average ( "+WriteVal(BarsSince(C < finalmov_avg),1)+" ) Bars",EncodeColor(colorRed)+"Close has been Below Moving Average ( "+WriteVal(BarsSince(C > finalmov_avg),1)+" ) Bars")+"\n"+EncodeColor(colorBlack)+"The average # of Bars Above ( "+WriteVal(round(Cum(BarsSince(C < finalmov_avg)/Cum(1))),1)+" )"+"\n"+"The average # of Bars Below ( "+WriteVal(round(Cum(BarsSince(C > finalmov_avg)/Cum(1))),1)+" )"; _SECTION_BEGIN("AFL Example"); SetBarsRequired(10000,10000); /* this ensures that the charts include all bars AND NOT just those on screen */ SetFormulaName("Sample System"); /*name it for backtest report identification */ SetTradeDelays( 1, 1, 1, 1 ); /* delay entry/exit by one bar */ SetOption( "initialequity", 100000 ); /* starting capital */ PositionSize = -10; /* trade size will be 10% of available equty */ SetOption( "MaxOpenPositions", 6 ); /* I don't want to comit more than 60% of Equity at any one time */ SetOption( "PriceBoundChecking", 1 ); /* trade only within the chart bar's price range */ SetOption( "CommissionMode", 2 ); /* set commissions AND costs as $ per trade */ SetOption( "CommissionAmount", 32.95 ); /* commissions AND cost */ SetOption( "UsePrevBarEquityForPosSizing", 1 ); /*set the use of last bars equity for trade size*/ PositionScore = 100/C; /*Set the order for which stock trades when get mulitple signals in one bar in backtesting */ LongPer = Param("Long Period", 50, 30, 100, 5 ); /* select periods with parameter window */ ShortPer = Param("Short Period", 5, 3, 10, 1 ); LongMA = EMA( C, LongPer ); ShortMA = EMA( C, ShortPer ); LastHigh = HHV( H, LongPer ); Buy = Cross( ShortMA, LongMA ) AND H > Ref( LastHigh, -1 ); Sell = Cross( LongMA, ShortMA ); Buy = ExRem(Buy,Sell); Sell = ExRem(Sell,Buy); Filter = Buy OR Sell; AddTextColumn( FullName(), "Company Name" ); AddColumn( Buy, "Buy", 1 ); AddColumn( Sell, "Sell", 1 ); AddColumn( C, "Close", 1.3 ); AddColumn( H, "High", 1.3 ); AddColumn( LastHigh, "HHV", 1.3 ); AddColumn( LongMA, "Long MA", 1,3 ); AddColumn( ShortMA, "Short MA", 1,3 ); GraphXSpace = 10; //Plot( C, " Close Price", colorGrey50, styleBar ); Plot( LongMA, " EMA(C,"+WriteVal(LongPer,1)+")", colorBrown, styleLine|styleNoRescale ); Plot( ShortMA, " EMA(C,"+WriteVal(ShortPer,1)+")", colorBlue, styleLine|styleNoRescale ); Plot( Ref(Lasthigh,-1), " HHV(H,"+WriteVal(LongPer,1)+")", colorRed, styleNoLine|styleDots|styleNoRescale ); //PlotShapes( shapeUpArrow*Buy, colorGreen, 0, L, -10 ); //PlotShapes( shapeDownArrow*Sell, colorRed, 0, H, -10 ); Title = " {{NAME}} {{DATE}} {{INTERVAL}} "+_DEFAULT_NAME()+" Chart values : {{VALUES}} "; _SECTION_END(); no=Param( "Swing", 5, 1, 55 ); res=HHV(H,no); sup=LLV(L,no); tsl=IIf(ValueWhen(IIf(C>Ref(res,-1),1,IIf(C<ref (sup,-1),-1,0))!=0,IIf(C>Ref(res,-1),1,IIf(C</ref><ref (sup,-1),-1,0)),1)==1,sup,res); Buy = Cross(C,res) ; Sell = Cross(sup,C) ; _SECTION_END(); a=C; g=(EMA(Close,3) * (2 / 4 - 1)-EMA(Close,5) * (2 / 6 - 1)) / (2 /4- 2 /6); e=Ref(tsl,-1); Buy = Cross(C,tsl) ; Sell = Cross(tsl,C) ; SellPrice=ValueWhen(Sell,e,1); BuyPrice=ValueWhen(Buy,e,1); Long=Flip(Buy,Sell); Shrt=Flip(Sell,Buy ); Filter=Buy OR Sell; Buy = Cross(C,tsl) ; Sell = Cross(tsl,C) ; shape = Buy * shapeUpArrow + Sell * shapeDownArrow; PlotShapes( shape, IIf( Buy, colorGreen, colorRed ),0, IIf( Buy, Low, High ) ); a1=Ref(tsl,-1); dist = 0.8*ATR(1); //0.8 dist1 = 1.8*ATR(1); //1.2 for( i = 0; i < BarCount; i++ ) { if( Buy[i] ) { PlotText( "Buy:" + L[ i ] + "\nTgt: " + (a1[i]*1.005) + "\nSL: " + (tsl[i]*0.9975), i, L[ i ]-dist[i], colorLime); } if( Sell[i] ) { PlotText( "Sell:" + H[ i ] + "\nT: " + (a1[i]*0.995) + "\nSL: " + (tsl[i]*1.0025), i, H[ i ]+dist1[i], colorGreen); } } |
【 More About Target Achiever for Amibroker AFL ⋡
♌
DOWNLOAD T. ACHIEVER 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.
♍
TARGET ACHIEVER 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.
♊
TARGET ACHIEVER 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)
Tags amibroker afl
0 thoughts on “Download Target Achiever for Amibroker AFL (Script)”