QUESTION:
1) Lets assume I have two indicators. One called Source, and the other called SInk Both indicators update on a tick by tick basis. Both indicators implement "IsFirstTickOfBar" logic within "OnBarUpdate" to distinguish data relating to a new bar..
2) Lets assume SInk inputs from Source output plot values.
ASSUMPTION:
Boolean variable "IsFirstTickOfBar" is autonomous per indicator. That is to say, there is no synchronization between separate indicators with the variable "IsFirstTickOfBar"
As such, it is possible for Source indicator to output to its plot value, data that corresponds to a new "first tick of a new bar". While Sink indicator reads this new tick value, but might be under the assumption that it is still a tick update of the current bar it is processing.
In other words, there is no synchroniztion of "IsFirstTickOfBar" between indicators.
Is this correct ?

Comment