Why?
When you reach State.DataLoaded, NT has loaded all historical bars,
but you don't have access to these historical bars just yet. The value in
Count represents the number of historical bars waiting in the wings.
Waiting for what?
For OnBarUpdate, silly. Your code gets a chance to 'see' each
new bar added to the chart via OnBarUpdate. You are not allowed
to peek ahead. Just because you know the value Count doesn't
really mean much -- use CurrentBar instead, this property is
incremented by 1 each time a bar is closed -- and what happens
when a bar closes? Well, doh, NT calls the OnBarUpdate method.
Make sense?



Comment