-
-
Notifications
You must be signed in to change notification settings - Fork 609
Description
Hi,
you mention you'd like us to contribute with ISIN codes but how to add them? We could theoretically add a column but problem is that a single ticker can have multiple ISINs so that would create multiple columns or duplicate rows of the same ticker with different ISINs.
Thanks for your work!
PS: don't know if that can be relevant but I have an Excel file that, through powerquery, given a ticker, downloads all the historical values from yahoo finance. Problem is that now if the number of rows (tickers) changes, the query requires updating. I'm working on making it work on an array (to have it work no matter how many tickers, as any ticker is an iteration of the same cycle querying yahoo finance). The mix of your DB and this could create a very nice DB !
PPS: if you want to explore yourself here's the syntax:
https://query1.finance.yahoo.com/v7/finance/download/"&Ticker&"?period1=1214956800&period2=20037888000 where :
- "&Ticker&" is the ticker (who would have guessed?!)
- period1= start date in UNIX format
- period2= end date in UNIX format
this will return a nice csv file with the following columns: - Date
- Open
- High
- Low
- Close
- Adj Close
- Volume
- Ticker