+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Dinapoli MACD

Dinapoli’s interpretation of the MACD, powered by Amibroker data, involves utilizing Joe Dinapoli’s strategies to analyze market momentum. AFLs within Amibroker could be used to implement Dinapoli’s MACD, assisting traders in identifying potential buy or sell signals.

/
_SECTION_BEGIN("Dinapoli MACD ");
r1 = Param( "Fast avg", 8.3896, 2, 200, 1 );
r2 = Param( "Slow avg", 17.5185, 2, 200, 1 );
r3 = Param( "Signal avg", 9.0503, 2, 200, 1 );
Plot( ml = MACD(r1, r2), StrFormat(_SECTION_NAME()+"(%g,%g)", r1, r2), ParamColor("MACD color", colorRed ), ParamStyle("MACD style") );
Plot( sl = Signal(r1,r2,r3), "Signal" + _PARAM_VALUES(), ParamColor("Signal color", colorBlue ), ParamStyle("Signal style") );
Plot( ml-sl, "MACD Histogram", ParamColor("Histogram color", colorBlack ), styleNoTitle | ParamStyle("Histogram style", styleHistogram | styleNoLabel, maskHistogram ) );
_SECTION_END();

Open chat
1
Hi, how can I help you?