.

Simple Line Bull Bear Trading Zone - Amibroker AFL Code

Click Image To Enlarge. Please Rate And Comment.

Simple Line Bull Bear Trading Zone

_SECTION_BEGIN("MACD");
r1 = Param( "Fast avg", 3, 2, 200, 1 );
r2 = Param( "Slow avg", 11, 2, 200, 1 );
MAc = MACD (r1,r2);
Col = IIf (MAc > Ref(MAc,-1),colorBlue,colorRed);
Plot( MAc,"MACD", Col, styleThick );
Plot(6, "ribbon", Col, styleOwnScale| styleArea|styleNoLabel,-0.5,100);
_SECTION_END();
Previous Post Next Post