i have a strategy that is referencing to an indicator that looks like this:
protected override void OnBarUpdate()
{
if (State != State.Realtime) return;
Print(string.Format("{0} {1}", State, CurrentBar));
}
Realtime 0 Realtime 1 Realtime 2
Realtime 2702

Comment