Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Am I using filters correctly for creating my trading universe?

Am I using filters correctly to create my universe? Because my backtest is saying I didn't use the the Quantopian Tradable Universe but I did put QTradableStocksUS() in there.

num_analysts = qf1_eps_cons.num_est.latest  
num_analyst_filter = num_analysts >= 10  
f = factor_being_tested  
universe = QTradableStocksUS() & num_analyst_filter & f.notnull() & f.notnan()