From the section describing multiple frame or instrument, there is an example to add a multiple instrument by using add() function. Is the hard-coded instrument the only way to apply one strategy to multiple instruments?
protected override void Initialize()
{
Add(PeriodType.Minute, 3);
Add("AAPL", PeriodType.Minute, 1);
}

Comment