Easylanguage help

Hello
2 questions concerning intraday bars .

1)How to determine the highest or the lowest of a bar at a precise time in the day?

2)How to determine the highest or the lowest of a bar, at x bars after the opening?

Thanks,

:confused:
 
Quote from DAN34:

Hello
2 questions concerning intraday bars .

1)How to determine the highest or the lowest of a bar at a precise time in the day?

2)How to determine the highest or the lowest of a bar, at x bars after the opening?

Thanks,

:confused:

Maybe try something like

var:myH(0);
If time=(enter time here) then
myH = High;
 
Back
Top