There used to be an (unsupported) way to access execution data via Ninjatrader.Cbi I think in NT7. Is this still possible in NT8 in a similar manner? I cannot seem to get the same namespaces. I did a few searches but I don't see anything for NT8. It has to be from an indicator, not a strategy, so I don't think I can use the performance bits.
The code for NT7 was somthing like this
foreach (Account acct in Cbi.Globals.Accounts)
{
if (acct.Executions != null)
{
foreach (Execution execution in acct.Executions)
{
Print(execution.ToString());
}
}
}

Comment