I know something is wrong here. I'm just trying to create a simple universe that I can manually change where my code can execute on any equity in my universe that fits the criteria of the rest of my algo.

 

class DancingYellowFlamingo(QCAlgorithm):

   def Initialize(self):
       self.SetStartDate(2021, 1, 1) 
       self.SetCash(100000)
       self.UniverseSettings.Resolution = Resolution.Minute
       
       tickers = ["AAPL", "MSFT", "TSLA", "NVDA", "DIS", "AMD", "NFLX"]
       symbols = [ Symbol.Create(x, SecurityType.Equity, Market.USA) for x in tickers]
       return symbols
       self.SetUniverseSelection(ManualUniverseSelectionModel(tickers))