Stock symbols

If you want to use a stock library like this to work with some data. It may be a difficulty that in europe the ISIN is a more common identifier than the symbols used by the library.
To solve this I have collected a list of about 5k symbols and mapped them to companies and their ISIN. All in a simple parseable json.
Link to json

Example

the following is an example how the json structure looks like.
There is some base info like the name and the location of the company, also there are some tags which industry the company is working in.
The ISIN is an array, because there are some companies with multiple stock options and therefore multiple ISIN numbers.
Also there is a list which indices contain this stock
And finaly there is a list of symbols for the stock with the additional info of the currency and the exchange where the symbol belongs to.
[ { "name": "adidas AG", "country": "Germany", "industries": [ "Sportswear", ... ], "isins": [ "DE000A1EWWW0" ], "indices": [ "DAX", "EURO STOXX 50" ], "symbols": [ { "yahooSymbol": "ADS.F", "currency": "EUR", "exchange": "Frankfurt" }, { "yahooSymbol": "ADS.DE", "currency": "EUR", "exchange": "XETRA" }, ... ] }, ... ]

Github



Github Repository