Mikano system for Amibroker (AFL)
tourist007 over 13 years ago Amibroker (AFL)
System made of Heikin Aishi plus genuine ideas to make good buy sell signal. Good results in 5,15 minutes.
Indicator / Formula
Copy & Paste Friendly
a=20;
_SECTION_BEGIN("HeikenAshiSmoothed");
GraphXSpace=5;
p=20;
Om=DEMA(O,p);
hm=DEMA(H,p);
lm=DEMA(L,p);
Cm=DEMA(C,p);
HACLOSE=(Om+Hm+Lm+Cm)/4;
HaOpen = AMA( Ref( HaClose, -1), 1);
HaHigh = Max( Hm, Max( HaClose, HaOpen ) );
HaLow = Min( Lm, Min( HaClose, HaOpen ) );
slope = Param("slope",2,2,100,1);
Color20= IIf(LinRegSlope(MA(HaClose,a),slope)<0,colorRed,colorGreen);
Plot(MA(HaClose,a),"", color20,styleThick);
Color=IIf(Haclose>MA(HaClose,a),colorGreen, colorRed);
PlotOHLC( HaOpen, HaOpen, HaClose, HaClose, "" + Name(), Color, styleCandle);
_SECTION_END();
Buy=Color==colorGreen;
Sell=Color==colorRed;
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
PlotShapes(IIf(Buy , shapeUpArrow, shapeNone),colorGreen);
PlotShapes(IIf(Sell, shapeDownArrow, shapeNone),colorRed);
6 comments
Leave Comment
Please login here to leave a comment.
Works really well in daily time frame.
Thanx you Tourist.
In 15 minutes TF average trade is with above 80% success rate.
poor results for daily prediction
work good in ema ,make all as ema
NAvin…
the values displaying in this afl mikano is very much different.
ex:now market is 5665 but this afl shows 5684
I dont know how to rectify it other all afl giving correct values