Plz convert this amibroker AFL to MT4

madhavareddy1203

Well-Known Member
#1
Hi,

Plz convert this amibroker afl to MT4 indicator.

i want to apply this afl in GCI trading. plz help me.

thanks in advance.

_SECTION_BEGIN("SMART TRADING SYSTEM ");
GraphXSpace = 15;
A = DEMA(C,2);
BH = DEMA(a,34)+2*(StDev(a,34));
BL = DEMA(a,34)-2*(StDev(a,34));
BM = (BH+BL)/2;
Highs = TEMA(High, 30);
Lows = TEMA(Low, 30);
A = DEMA(L,2);
BH = DEMA(A,34)+2*(StDev(A,34));
BL = DEMA(A,34)-2*(StDev(A,34));
BM = (BH+BL)/2;
A = DEMA(H,2);
BH = DEMA(A,34)+2*(StDev(A,34));
BL = DEMA(A,34)-2*(StDev(A,34));
UpTrend = C > Highs;
DnTrend = C < Lows ;
BM1 = (BH+BL)/2;
Sell=Cross(BM,C);
Buy=Cross(C,BM1);
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
PlotShapes(IIf(Buy, shapeHollowUpArrow, shapeNone),colorGreen, 0,L, Offset=-15);
PlotShapes(IIf(Sell, shapeHollowDownArrow, shapeNone),colorRed, 0, H, Offset=-15);Colors = IIf(UpTrend, colorGreen, IIf(DnTrend, colorRed, colorLightGrey));
Plot(Close, "Price", Colors, styleCandle | styleThick);
 

hmp

Well-Known Member
#4
Dear Reddy
How are you trading this afl .Is it positional or intraday? How much time frame is advisable
Regards
 

madhavareddy1203

Well-Known Member
#5
Dear Reddy
How are you trading this afl .Is it positional or intraday? How much time frame is advisable
Regards
im using 15 mins TF... buy above high.. sell below low

dont expect huge profit from this... just im using as support to find trend.



plz anyone convert thios afl to mt4..
 

Similar threads