I use Datareader to get stock quotes from Yahoo finance. I would like to get the Euronext Paris values ββon the stock market, and not the standard values ββ(NYSE, I think).
import pandas.io.data as web
import time
today = time.strftime(\"%m/%d/%Y\")
valeur = web.DataReader('ING.PA',data_source='yahoo',start='1/1/2000',end=today)
Is there an option in the Datareader method to indicate that I want Euronext closure values?
I saw in the Yahoo Finance API that there is an x ββtag for the Exchange, which can be useful for pinpointing the market in which you want to get the values ββ( http://www.marketindex.com.au/yahoo-finance-api ), but I do not see any example that I can pass to this x tag to try it. And I donβt know if I can use the equivalent in Datareader afterwards.
I also have a page describing google_exchange codes indicating the one I am looking for ("EPA"), but I cannot transfer it to the DataReader.
https://github.com/mdengler/stockquote/blob/master/stockquote.py
Does anyone know this? thanks in advance
Mfk source
share