Hi,
i am working on 5 min Chart.
Following code helps me to find the first bar's High and Low of Prv Day.
How can i find the High and Low of prv day with Specific Time number? for instance 2:30 Pm candle.
tn=Timenum();
starttime=103000;
Endtime=180000;
//Prv day First bar High and Low
FBH = ValueWhen( Day() != Ref( Day(), -1 ), H, 2 );
FBL = ValueWhen( Day() != Ref( Day(), -1 ), L, 2 );