Hello. I am having an issue retrieving the top 10 constituents for the “QQQ” etf. I use the following code to do so:

self.AddUniverse(self.Universe.ETF("QQQ", self.UniverseSettings, lambda c: self.SelectConstituents(c, 'QQQ', 10)))

What is strange is that this code works fine in the backtest environment. What makes it even stranger is the fact that the same snippet of code works in the live environment for other etfs, such as “SOXX” and “XLF”.

As such, I have narrowed it down to something specific to “QQQ” constituents on the QuantConnect backend, and am looking for a fix to have the constituents accurately delivered not only in backtesting, but also in live mode.

Thank you.