AFL for ema crossover

#1
Hello all!
Please give me AFL for following conditions..

TIME FRAME-ANY
EMA - 10,25,50
BUY- 10EMA CROSS FROM BELOW 25 & 50 EMA
EXIT- 25EMA CROSS FROM ABOVE 50 EMA
SELL- 10EMA CROSS FROM ABOVE 25 & 50 EMA
EXIT- 25EMA CROSS FROM BELOW 50 EMA
Thanks..
 

shanki99

Well-Known Member
#2
Hello all!
Please give me AFL for following conditions..

Thanks..
There are couple of EMA crossovers in Ami library...plz have a check there

I have copy pasted whatever i had in that name....try to manipulate this to suit ur reqmt

Hope this helps !

_SECTION_BEGIN("EMA CROSSOVER CHART");
LongPer = Param("Long Period", 10, 30, 100, 5);
ShortPer = Param("Short Period", 10, 30, 100, 5);
LongMA = EMA(O, LongPer);
ShortMA = EMA(C, ShortPer);
LastHigh = HHV(H, LongPer);
GraphXSpace = 10;
Plot(LongMA, " EMA(C, " + WriteVal(LongPer, 1) + ")", colorBrightGreen, styleLine);
Plot(ShortMA, " EMA(C, " + WriteVal(ShortPer, 1) + ")", colorRed, styleLine);
Buy = Cross(LongMA, ShortMA);
Sell = Cross(ShortMA, LongMA);
PlotShapes(shapeUpArrow * Buy, colorBrightGreen, 0, L, - 10);
PlotShapes(shapeDownArrow * Sell, colorRed, 0, H, - 10);
Filter=Buy OR Sell;
Sell=ExRem(Sell,Buy); Buy=ExRem(Buy,Sell);
AddColumn(Buy,"Buy");
AddColumn(Sell,"sell");
AddColumn(BuyPrice,"BuyPrice");
AddColumn(SellPrice,"SellPrice");
_SECTION_END();
 

Similar threads