I am developing an indicator and i am trying to figure out why i get multiple State of the same type while i add the indicator on the chart and press the OK button in the UI window ?
Here is the sequence of State that i get from this very basic handler:
protected override void OnStateChange()
{
Print("State == " + State);
}
output:
State == SetDefaults
State == SetDefaults
State == SetDefaults
State == Terminated
State == Terminated
State == SetDefaults
State == Configure
State == DataLoaded
State == Historical
State == Transition
State == Realtime
State == Terminated

Comment