How to fetch Symbols list for Exchange Short Name #92
Closed
irajeshraj
started this conversation in
General
Replies: 2 comments 1 reply
-
First request: import financedatabase as fd
equities = fd.Equities()
equities.search(exchange='NYS', country='United States') Second request: import financedatabase as fd
equities = fd.Equities()
equities.search(exchange='BSE', country='India') Alternatively: from financetoolkit import Discovery
discovery = Discovery(api_key="FMP_KEY")
all_stocks = discovery.get_stock_list()
all_stocks[all_stocks['Exchange Code'] == 'NSE'] |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks for your response.
I have three follow up questions:
1. How frequently non-US symbols databases get updated ?
2. How to get this API-key for the request? "discovery =
Discovery(api_key="FMP_KEY")"
3. How to identify if a symbol is delisted from exchange ? since
somewhere I read on github that the delisted symbols remains in databases
…On Mon, Mar 3, 2025 at 10:15 AM Jeroen Bouma ***@***.***> wrote:
First request:
import financedatabase as fd
equities = fd.Equities()
equities.search(exchange='NYS', country='United States')
Second request:
import financedatabase as fd
equities = fd.Equities()
equities.search(exchange='BSE', country='India')
Alternatively:
from financetoolkit import Discovery
discovery = Discovery(api_key="FMP_KEY")
all_stocks = discovery.get_stock_list()
all_stocks[all_stocks['Exchange Code'] == 'NSE']
—
Reply to this email directly, view it on GitHub
<#92 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKR2CF4LHA2JLLABZRJKMSD2SSL2RAVCNFSM6AAAAABYBHD7QCVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTEMZXHEZDQNI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
--
Regards,
Rajesh Kumar
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am looking to fetch all the symbols for
exchange short name: 'NYSE' in country: US
or
exchange short name: NSE in country: India
How to achieve it ?
Beta Was this translation helpful? Give feedback.
All reactions