Is there a way to just pass an array into the manual universe section?

public override void Initialize() { UniverseSettings.Resolution = Resolution.Minute; var symbols = new [] { QuantConnect.Symbol.Create("SPY", SecurityType.Equity, Market.USA) }; SetUniverseSelection( new ManualUniverseSelectionModel(symbols) ); }

so instead of "SPY" say I have 10 tickers sitting in a string array.  How can I dump those guys in there easily without having to repear t whole line 10 times?

Author