foreach (Account sampleAccount in Account.All) {
if (sampleAccount.Name == "Sim101") {
Print("Found Sim101");
Print(sampleAccount.Strategies.Count);
try {
foreach (StrategyBase strat in sampleAccount.Strategies) {
Print("Found " + strat.Name);
Print(strat.SystemPerformance.AllTrades.Count); // Always 0?​
The SystemPerformance.AllTrades.Count is always 0 for every strategy even though I know it's made trades, is SystemPerformance.AllTrades.Count not exposed in StrategyBase?

Comment