I Build a strategy that can run on many instruments(~50). I want to be able to run all the strategies together but instead of manually set them in the strategy tab I was thinking on writing a Master strategy that take as an input the list of strategies and create new strategy instance for each instrument.
For example:
List<MyStrategy> MasterStrategy = new List<MyStrategy>();
...
foreach (string str in Symboles)
MasterStrategy.Add(new MyStrategy(str));
Is it possible design?
Is there sample codes that were tested for doing such a task?
Thanks in advance for any assistance!

Comment