At this moment, I use a bit inflexible approach,like:
... OnBarUpdate()
{
if (LicenseNotActive) return;
}
however, I wish that I had a one-time executed function (like Application.Exit() , but this exits NT at all), so, i dont need to check any further OnBarUpdate or other events, indicator should just stop. Ideally, I wish something like this:
if (State==State.DataLoaded)
{
if (LicenseNotActive) IndicatorStop(); <--- something like this
}

Comment