Hi there, 

If creating a universe from components of one ETF is straightforward: 

class SMHConstituentsUniverseSelectionModel(ETFConstituentsUniverseSelectionModel):

    def __init__(self, universe_settings: UniverseSettings = None) -> None:

        symbol = Symbol.create("SMH", SecurityType.EQUITY, Market.USA)

        super().__init__(symbol, universe_settings, lambda constituents: [c.symbol for c in constituents])


How to create a universe based on 2 ETF or more ?

Thanks in advance