I have defined bid bars of 5 seconds. Printing Time[0] value I can observe that Time[0] doesn’t change with changes of the bids, it changes with changes of Last values.
With a not very liquid instrument, it is very obvious.
I thought that Time was related to date of the configured value not always with Last value.
Code looks like this:
if (!Historical)
{
Print(BarsInProgress + " " + Time[0] + " " + Close[0]);
}
Close values are OK (the bid value) but Time values are wrong because they only change with a Sale.
Is it a normal behavior?
Regards

Comment