I have been driving myself crazy trying to fix a problem here. Basically, I am adding a list of instruments in a strategy. However, some instruments seem to be invalid insofar that they don't have data (they get added without errors/warning/trace file entries..., but I don't have data for them - I found one of them by chance and the chart went from 0 to 0.01 with no data...)
I know that NT only calls BarsInProgress once the shortest series has a bar update, but how can we catch series that don't have any data at all? My strategy simply won't run because of this, and I can't seem to figure out a way of identifying the bad security (without going through all 500 one by one...). OnBarUpdate never gets called.
I've tried printing the name of the security if it had Closes[x].Count == 0, or null, within the Initialize method but that didn't work.
Any help would be appreciated.
Phil

Comment