On a Strategy in 220 Tick
When CalculateOnBarClose = true;
if (Open[0] >= Close[0]) ....
run good
but when CalculateOnBarClose = false;
if (Open[0] >= Close[0]) ....
don't run good
my question is in 220 Tick :
with CalculateOnBarClose = false;
how can I obtain the instant value of Open/Close in Tick
and not the Close[0] Value
thanks
Pierre

Comment