I was thinking of changing State somewhere in the code, but I need to figure out how and where to code this change. An easier option would seem to put my logic in the OnBarUpdate() method with this code:
protected override void OnBarUpdate()
{
// Skip OnBarUpdate events
if (State == State.Historical)
// my logic
}

Comment