I have modified the code as layed out below but am getting a sytax error after the important time line of code. This is set at 9.50am so as to align with the Australian SPI open.
_SECTION_BEGIN( "Price");
TimeFrameSet( in5Minute );
SetChartOptions( 0,chartShowArrows|chartShowDates );
_N(Title = StrFormat("{ {NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1..0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));
Plot( C, "Close", ParamColor(" Color", colorBlack ), styleNoTitle | ParamStyle(" Style") | GetPriceStyle( ) );
if( ParamToggle( "Tooltip shows", "All Values|Only Prices" ) )
{
ToolTip=StrFormat( "Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%%)\nVolume: "+NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C, 1 )));
}
newday = Day() != Ref(Day(), -1);
highofday = Ref(HighestSince( newday, H, 1), -1);
Lowofday = Ref(LowestSince( newday, L, 1), -1);
Rangeofday=highofday-lowofday;
importanttime= 95000;
10minuteORhigh = ValueWhen( Cross(TimeNum( ),95000), highofday, 1);
10minuteORlow= .....;
StrFormat("newday = %g \nhighofday = %1.4f \nLowofday = %1.4f \n10MinHi = %1.4f", newday, highofday, Lowofday, HighOr10Min );
Plot(HighOr10Min , "10 Day", colorRed);