Last active
February 13, 2023 10:44
-
-
Save yongghongg/8cbd242347ff171780f491be5a48c583 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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