A quick question. I am trying to download historical data for some stocks from yahoo-finance by using pandas. The code is, as always:
from pandas_datareader import data as pdr
import datetime as dt
import fix_yahoo_finance
df= pdr.get_data_yahoo(ticker, start=dt.datetime(2014, 1, 1), end=dt.date.today())
The result I obtain is an empty dataframe "df", which was not the case until yesterday.
Is anyone having the same issue? Thanks
UPDATE: Yahoo fixed this today, but the system is so unreliable these days that I encourage everyone to find alternatives for data, especially if your work depends on it