Hi All-

I would like to log data for the 10 selected tickers from a Coarse Universe. I'm able to print the sorted values (using sortedbyDollarVolume), but what I need are the logs for the 10 tickers that remain after filters are applied. I'm getting errors when I try looping through each ticker in symbols_by_price. 

Thanks,

Justin

    def CoarseSelectionFilter(self, coarse):

        sortedByDollarVolume = sorted(coarse, key=lambda c: c.DollarVolume, reverse=True)
        symbols_by_price = [c.Symbol for c in sortedByDollarVolume if c.Price > 1 and c.Price < 5 and c.HasFundamentalData and c.Volume > 50000 and len(c.Symbol.Value) <= 4]
        self.filteredByPrice = symbols_by_price[:10]

        
        for c in symbols_by_price[10]: #works for sortedbyDollarVolume, but not for symbols_by_price
	        self.Log(",Symbol," + str(c.Symbol.Value) + ",DollarVolume," + str(c.DollarVolume) +  ",Price," + str(c.Price) + ",Volume," + str(c.Volume))

        return self.filteredByPrice