Develop this MT4

madhavareddy1203

Well-Known Member
#1
Hi,

Plz develop new mt4 for this amibroker logic.. Plz help meeee...

Guys its urgent... I need this.. plz help mee :clap::clapping::clap:

Thanks in advance

PHP:
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, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_BEGIN("K.I.S.S Settings");
Periods = Param("Call Sensitivity", 3, 2, 40, 1 );
accm = Param("StopLoss Sensitivity", 0.16, 0, 1, 0.001 );
_SECTION_END();

_SECTION_BEGIN("Buy Sell Declaration");
VAL= EMA( Close, Periods);
B  = C>Val;
S = C<Val;
B1 = Ref(B,-2);
S1 = Ref(S,-2);

Sell = S AND S1;
Buy  = B AND B1;

Buy=ExRem(Buy,Sell) ;
Sell=ExRem(Sell,Buy);
PlotShapes( IIf( Buy, shapeUpArrow, shapeNone ), colorBrightGreen ,layer = 0, yposition = L, offset = -10 );
PlotShapes( IIf( Sell, shapeDownArrow, shapeNone ), colorBlue ,layer = 0, yposition = H, offset = -10 );
_SECTION_END();
 

Similar threads