Code Amibroker Indicators

Radar for The Foundation for Amibroker (AFL)

This Radar afl is a combination for Southwind’s foundation. It has heiken trend indicator as well as macd and histogram with buy sell arrows, with various indicators as bearish hook and bullish hooks warnings. It also gives blue lines showing…

January 10, 2019 by admin
Code Amibroker Indicators

15 minute intraday for Amibroker (AFL)

This is an intraday afl I have not coded this but just add some formula it works in 15min.or above time frame..just take trade above yelowline or below good result. _SECTION_BEGIN(“graph”); SetChartOptions(0,chartShowArrows|chartShowDates); gxs=Param(“GRAPH spaceing”,10,5,50,5); GraphXSpace = gxs; strWeekday = StrMid(“SunMonTueWedThuFriSat”,…

January 10, 2019 by admin
Code Amibroker Indicators

MACD EXP for Amibroker (AFL)

MACD with buy/sell signal _SECTION_BEGIN(“MA Difference 20 Period”); //—————————————————————————— // // This indicator displays how far the closing price is above or below a 20 // period moving average in % terms. It is displayed as a histogram and the //…

January 10, 2019 by admin
Code Amibroker Indicators

Profitunity for Amibroker (AFL)

Contoh Sistem Profitunity (Buaya) dari Bill Williamyang berasal dari Buku Trading Chaos 2nd Edition.Sinyal Entry yang digunakan adalah Wiseman 2 dan Wiseman 3Sinyal Exit Wiseman 2 Sinyal Exit Wiseman 3 adalah Buaya MerahMenggunakan Parameter Toggle yang bisa meanmpilkan dan menghilangkansemua garis…

January 10, 2019 by admin
Mở Tài Khoản - Nhận ngay bộ công cụ AI trị giá 56000 USD
Code Amibroker Indicators

TD Sequential Perl for Amibroker (AFL)

Based on the book of Jason perl _SECTION_BEGIN(“TDST_DeMark_Perl”); /* Set Parameters. */ Plotall=ParamToggle(“Plot all lines “, “No|Yes”,1); Plotpercent=Param(“Plot percentage above/below visible range “,20,0,100,5,0); gapprox=Param(“Proximity Gap Multiplier”,1,0,5,0.5,0); bluedist=Param(“Blue_Multiplier”,1.75,0,10,0.25,0); reddist=Param(“Red_multiplier”,0.25,0,10,0.25,0); /* Initialise variables. */ sup1=sup2=sup3=sup4=sup5=sup6=sup7=sup8=sup9=Null; res1=res2=res3=res4=res5=res6=res7=res8=res9=Null; TDSeqBuy=False; TDSeqbuydigits=0; TDSeqbuyrisk=TDSeqbuyreward=TDSeqbuyrrratio=TDSeqbuystop=0; TDSeqSell=False; TDSeqselldigits=0; TDSeqsellrisk=TDSeqsellreward=TDSeqsellrrratio=TDSeqsellstop=0;…

January 10, 2019 by admin
Code Amibroker Indicators

Secret Method for Amibroker (AFL)

Based on Russ Horn’s Secret Method Strategy _SECTION_BEGIN(“HA Looping ( no AMA() )”); /////////////////////////////////////////////////////////// // Heikin Ashi – Calculated Properly without using AMA // JF Derzi, December 2012 HaClose[0] = (Open[0]+High[0]+Low[0]+Close[0]) / 4; HaOpen[0] = (HaClose[0] + Open[0]) / 2;…

January 10, 2019 by admin
Code Amibroker Indicators

NIFTY HUNTER for Amibroker (AFL)

spacial for nifty pls concider with other stocks ur own risk base on numaric change configure…. sigwd=ParamToggle(“sigchange”,”weekly|daily”,1); //HBS mean histogram buy sell and LHBS mean low buy high sell field= ParamToggle(“field”,”fieldd|fieldw”,1); font = ParamToggle(“font”,”Show|Hide”,1); messageboard = ParamToggle(“Message Board”,”Show|Hide”,1); prexplore= ParamToggle(“perce/buysell”,”pers|buysell”,1);…

January 10, 2019 by admin
Code Amibroker Indicators

Auto Support-Pivot-Resis levels with Swing Edited for Amibroker (AFL)

here i am posting my Swing with Pivots levels, which is working very good in MCX. _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,…

January 10, 2019 by admin
Code Amibroker Indicators

Coppock Trade Signal

Based on Edwin Sedgwick Coppock’s original work to generate Buy and Sell signals. All the parameters are, however, adjustable including the Coppock Filter to filter out the market noise. _SECTION_BEGIN(“Coppock Trade Signal v1.1”); //PARAMETERS: ROC1Periods =Param(“ROC1 periods”,14,2,200,1,0); ROC2Periods =Param(“ROC2 periods”,11,2,200,1,0);…

January 10, 2019 by admin
Code Amibroker Indicators

SUPER cam for Amibroker (AFL)

_SECTION_BEGIN(“GANN Levels”); /* For Stocks/Index/Commodities “order” need to be 0.1 to 0.5 For Forex “order” should be 0.001 ( except JPY pairs ), for JPY pairs it need to be 0.01 */ Op=TimeFrameGetPrice(“O”,inDaily,0); order=Param(“Order”,0.5,0.001,0.1,0.001,sincr = 0); level1 = 1.25; level2…

January 10, 2019 by admin