I'm backtesting a strategy on multiple instruments, say ES and NQ.
In the first line of OnBarUpdate(), I'm printing
string instrumentName = Instrument.FullName;
Print($"{instrumentName} | {Time[0]} | Close[0] {Close[0]}");
Why is this?
Many thanks for your help!

Comment