How do I check to see if a symbol is in a given symbol list?
it's a two step process
## #1 - get the list handle self.earnings_today_after = service.symbol_list.get_handle('448CBB9E-CFDE-4A55-BB7B-7521080E5A0B') ## #2 - check to see if it's in the list print service.symbol_list.in_list(self.earnings_today_after, 'AAPL')
Comments
it's a two step process