How do you plot a line of fixed length each day?
I'm try to draw a line only between the hours of 06:00 &
12:00 and the IIF() function doesn't accept the Plot statement and the if()
function doesn't accept arrays, so I can't write
if(timenum() >= etc etc
{
plot (etc etc);
}
AM6H = ValueWhen(TimeNum()== 120000,HHV(H,10) + 0.0002);
H5 = Plot(AM6H ,"",colorWhite,styleLine|styleNoRescale);
IIf
( TimeNum() >= 060000 AND TimeNum()
<= 120000,H5, Null);//Doesn't work
with IIF()