Strategy.OnBarUpdate();
Strategy.OnBarUpdate();
Strategy.OnBarUpdate();
...
Indicator.OnBarUpdate();
Indicator.OnBarUpdate();
Indicator.OnBarUpdate();
...
is this by design? How can I get these to execute together. e.g.:
Strategy.OnBarUpdate();
Indicator.OnBarUpdate();
Strategy.OnBarUpdate();
...
Comment