Hello friends!
When I run this:
foreach (StrategyBase strategy in account.Strategies)
{
Print("Strat Category: " + strategy.Category + " Name: " + strategy.Name + " Instrument: " +strategy.Instrument.MasterInstrument.Name + " State: " + strategy.State);
}
The strategies are listed correctly in Control Center, They work fine, as in, when Enabled, they take trades etc..
If I enable a strategy from Control Center, I can see the print output information about that strategy as expected. If I disable the strategy, I see the message "Disabling NinjaScript strategy" and I can no longer see the strategy printed from the loop.
Help! =)
S.

Comment