Skip to content

Instantly share code, notes, and snippets.

@yongghongg
Last active February 13, 2023 10:44
Show Gist options
  • Save yongghongg/8cbd242347ff171780f491be5a48c583 to your computer and use it in GitHub Desktop.
Save yongghongg/8cbd242347ff171780f491be5a48c583 to your computer and use it in GitHub Desktop.
# get symbol list based on market
symbol_list_us = ss.get_symbol_list(market="US") # "us" or "america" will also work
symbol_list_us
'''
[{'symbol': 'AAPL',
'shortName': 'apple',
'longName': 'Apple Inc.',
'exchange': 'NASDAQ',
'market': 'us_market',
'quoteType': 'EQUITY'},
{'symbol': 'MSFT',
'shortName': 'microsoft',
'longName': 'Microsoft Corporation',
'exchange': 'NASDAQ',
'market': 'us_market',
'quoteType': 'EQUITY'},
{'symbol': 'GOOG',
'shortName': 'alphabet',
'longName': 'Alphabet Inc.',
'exchange': 'NASDAQ',
'market': 'us_market',
'quoteType': 'EQUITY'},
{'symbol': 'AMZN', ...}]
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment