I am working with the manually drawn objects on the chart, and pulling information from them.
Is there an obvious way to not do ANYTHING until the objects have all finished loading(after adding the indicator to the chart)?
I am working on OnRender(), and I've tried
if(State == State.Historical)
return;
What I am looking for, is after the chart fully loads, is the ability to distinguish between when all of the objects have been fully rendered and accounted for by NT... and then everything that occurs AFTER that.
Is there a simple way to do this?

Comment