.

Simple Bull Bear Trading Zone - Amibroker AFL Code

Click Image To Enlarge. Please Rate And Comment.

Simple Bull Bear Trading Zone

_SECTION_BEGIN("");

ERayBull= High - EMA(Close,13);
ERayBear= Low - EMA(Close, 13);

Plot(ERayBull,"Bull", colorViolet, styleHistogram|styleThick);
Plot(ERayBear,"Bear", colorOrange, styleHistogram|styleThick);
_SECTION_END();
Previous Post Next Post