+91-0000000000

}

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

Daily MACD

Optimize your trend-following strategy with the Daily MACD AFL for Amibroker. This tool, available for free download, leverages the Amibroker data feed to provide a daily perspective on the MACD indicator. Whether you’re a short-term trader or a long-term investor, the Daily MACD AFL enhances your ability to identify trend direction and potential entry and exit points. Download this AFL to integrate daily MACD analysis into your trading routine, ensuring a more comprehensive view of market trends.

/
_SECTION_BEGIN("MACD");
r1 = Param( "Fast avg", 12, 2, 200, 1 );
r2 = Param( "Slow avg", 26, 2, 200, 1 );
r3 = Param( "Signal avg", 9, 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", colorLightGrey ),styleNoTitle | ParamStyle("Histogram style", styleHistogram | styleNoLabel,maskHistogram ) );
_SECTION_END();

Open chat
1
Hi, how can I help you?