Skip to main content

Mikano system for Amibroker (AFL)

tourist007 over 13 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 10)
  • Tags:
    trading system, amibroker

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

3. anup82
over 13 years ago
tourist007 yes but u can say worked stock u r success stock like name lt sbi etc futer
6. gokudas
about 13 years ago

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

Leave Comment

Please login here to leave a comment.