You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A brief description of the bug and in which notebook/script it lives.
In the notebook located at this issue's title, pandas.datareader for yahoo finance is broken. Changing FB (which no longer exists as a ticker) to META didn't make any difference. On both occasions, the following error is thrown: string indices must be integers
I noticed FB is also fetched under the Quandl section, but I didn't complete the entire notebook since I noticed it seems nothing gets saved to disk to be used in later exercises.
To Reproduce
In case you are not running the current version of the notebook/script as found on GitHub.
Ran as is.
Changed the code as below. Seems to work fine.
start = datetime(2014, 1, 1)
end = datetime(2017, 5, 24)
Describe the bug
A brief description of the bug and in which notebook/script it lives.
In the notebook located at this issue's title, pandas.datareader for yahoo finance is broken. Changing FB (which no longer exists as a ticker) to META didn't make any difference. On both occasions, the following error is thrown: string indices must be integers
I noticed FB is also fetched under the Quandl section, but I didn't complete the entire notebook since I noticed it seems nothing gets saved to disk to be used in later exercises.
To Reproduce
Ran as is.
Changed the code as below. Seems to work fine.
start = datetime(2014, 1, 1)
end = datetime(2017, 5, 24)
yahoo= yf.download('META', start=start, end=end)
yahoo.info()
The text was updated successfully, but these errors were encountered: