Hello,

From the documentation, I learn the following way to add individual equity; but is there way to add the whole universe without adding each symbol?  For example, I want to add all symbols = MorningstarSectorCode.Technology, and search for tech stocks that meet fundamental criteria overtime.    What would be the best approach? Thanks

 

qb = QuantBook()

symbols=["SPY","VMW","TWTR","ADBE","W","UBER","LYFT","WORK","FB","PINS","SQ","MSFT"]

for symbol in symbols:
    qb.AddEquity(symbol)

history = qb.History(qb.Securities.Keys, 253, Resolution.Daily)