In other words if I change Closes[0] via my chart then I want Closes[1] to be changed with it without me having to resort to some strategy setting. Is there a way for me to add that second series programmatically and either omitting the instrument or setting it implicitly via Instruments[0].FullName? Or is there a better way?
UPDATE: I tried this and it works:

Add(Instruments[0].FullName, PeriodType.Tick, 1);
If this may cause issues or if there's an easier way please let me know. Thanks!

Comment