A Multi instrument strategy:
Primary bar: MSFT Daily
Add("AAPL",PeriodType.Day, 1);
if (BarsInProgress == 0)
{
Closes[0][0]-Closes[1][0]
}
Does Closes[1][0] soppose to be the current close price of AAPL? My test shows it is the close price of yesterday's AAPL, how to get today's close of AAPL? Thank you.

Comment