Plot Candlestick Chart with Title

AFL Code

_SECTION_BEGIN("Candlestick Chart with Title");

SetChartOptions(0,chartShowArrows|chartShowDates);

_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C ));

Plot(Close,"Price",color=colorBlue,style=styleCandle);

_SECTION_END();



Complete and Continue