Hi Members,
Please help me remove the line of HLC in previous days charts. These Previous days High Low Close should only be visible on current days chart.
Below is the AFL and I have attached an image of the chart.
Thanks all.
*************************************
_SECTION_BEGIN("PreDay HLC");
//TIME FRAME CALCULATION
H1 = TimeFrameGetPrice("H", inDaily, -1); // yesterdays high
L1 = TimeFrameGetPrice("L", inDaily, -1); // low
C1= TimeFrameGetPrice("C", inDaily, -1); // close
DayO = TimeFrameGetPrice("-1", inDaily); // current day open
//PLOTS
Plot(H1, "",colorRed,styleLine+styleThick+styleNoRescale+st yleNoLabel);
Plot(L1, "",colorBrightGreen,styleLine+styleThick+styleNoLa bel);
Plot(C1, "",colorLightGrey,styleLine+styleNoRescale+styleNo Label);
_SECTION_END();
**************************************
Please help me remove the line of HLC in previous days charts. These Previous days High Low Close should only be visible on current days chart.
Below is the AFL and I have attached an image of the chart.
Thanks all.
*************************************
_SECTION_BEGIN("PreDay HLC");
//TIME FRAME CALCULATION
H1 = TimeFrameGetPrice("H", inDaily, -1); // yesterdays high
L1 = TimeFrameGetPrice("L", inDaily, -1); // low
C1= TimeFrameGetPrice("C", inDaily, -1); // close
DayO = TimeFrameGetPrice("-1", inDaily); // current day open
//PLOTS
Plot(H1, "",colorRed,styleLine+styleThick+styleNoRescale+st yleNoLabel);
Plot(L1, "",colorBrightGreen,styleLine+styleThick+styleNoLa bel);
Plot(C1, "",colorLightGrey,styleLine+styleNoRescale+styleNo Label);
_SECTION_END();
**************************************