// Downloaded From https://www.WiseStockTrader.com
//Amit Sharma//
//Last 1 hr high low//
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_END();

_SECTION_BEGIN("One Hour High-Low");

OST=091500;  //Observation Start Time
OET=101500;  //Observation End Time
MET=153000;  //Market End Time

Currtime =TimeNum(); //get current time


ob_end = Cross(TimeNum(),OET);  //detect the observation end time
ob_st = Cross(TimeNum(),OST);   //detect the observation start time 


Highest_since = HighestSince(ob_st,H,1); //capture the 1 hour high
Lowest_since  = LowestSince(ob_st,L,1);  //capture the 1 hour low

ORBH = ValueWhen(ob_end ,Highest_since,1); //
ORBL = ValueWhen(ob_end ,Lowest_since,1);  

Plot(ORBH,"",colorGreen,styleDots); 
Plot(ORBL,"",colorBlue,styleDots); 


_SECTION_END();