The question I have is in regards to backtesting. In my strategy both instruments use daily bars, and I need to insure that both instruments have been updated for the daily close. Can I be sure that OnBarUpdate for bars object 0 will be complete before OnBarUpdate for bars object 1, since I need both bar objects to be updated for that date before running my code?
If this is not the case and I can't be sure which bars object updates first, how can I handle this in the code?

Comment