Imagine there is a running method OnBarUpdate() ... and in the meantime, some order is updated. Will this parallel change in the order be visible in the running OnBarUpdate() method ?
That means, at the start of OnBarUpdate() some order can have one state and and before end it can have different state ? Or during one call the order remains stable and unchanged ?
Are the callbacks like OnBarUpdate() and OnOrderUpdate() called in series one after another, or they can be called in parallel ?

Comment