Previous Day Close Line

aggy

Active Member
#1
Hello friends,

can anyone please provide me the code to plot PREVIOUS DAY CLOSE PRICE in my price chart, need only code for previous day closing price.

Thanks in advance :)
 

aggy

Active Member
#2
guys got the code thanks anyways ...

_SECTION_BEGIN("Formula 16");
Plot(TimeFrameGetPrice( "C", inDaily, -1 ),"PDC",colorWhite,styleDots|styleNoLine|styleNoRescale|styleNoTitle);
PlotText("PC",BarCount,LastValue(TimeFrameGetPrice( "C", inDaily, -1 ),True),colorWhite);

_SECTION_END();