Hi 
I wanted to know if there are ways where I can sleect and index like S & P as my universe or if I select by top dollar volume then only select equities as my universe and not ETFs. 

Right now I am selecting my universe for backtest by this method
 

def CoarseSelectionFunction(self, coarse):
        sorted_by_dollar_volume = sorted(coarse, key=lambda x: x.DollarVolume, reverse=True)
        return [x.Symbol for x in sorted_by_dollar_volume[:1000]]