I'm using Datareader to get some stock quotes from Yahoo finance. I would like to get the values of Euronext Paris Stock exchange market and not the standard values (NYSE ones 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 Datareader method to indicate I want Euronext closing values ?
I have seen in Yahoo Finance API that there is a tag x for Stock Exchange that can be useful to precise the market on which you want to get values (http://www.marketindex.com.au/yahoo-finance-api) but I can't see any example value I can pass to this x tag to try it. And I don't know if I can use an equivalent in Datareader afterwards.
I have also founnd a page describing google_exchange codes indicating the one I'm looking for ('EPA') but I don't how to transpose it in DataReader. https://github.com/mdengler/stockquote/blob/master/stockquote.py
Does anyone as a clue on this ? Thanks in advance