-
Notifications
You must be signed in to change notification settings - Fork 683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pandas data reader for google end dates are not working #395
Comments
@rsvp Is the google historical data is just merely a change of link from www.google.com to finance.google.com ? |
@bkcollection I have covered both Google Finance URL Change and Alternative Data Sources at rsvp/fecon235#7 in detail. The situation is still in flux. |
thank you for the thorough description of the problem with Google and
Yahoo. I've had good luck with Quandl, but it is not infallible. Some
symbols are not available. Have not tried Tingo and Alpha Advantage, so I
have no experience.
Looks like time to ditch Google and Yahoo. Frequent interface changes are
challenging to keep up with.
…On Sat, Sep 23, 2017 at 10:21 AM, Adriano ***@***.***> wrote:
@bkcollection <https://github.com/bkcollection> I have covered both *Google
Finance URL Change* and *Alternative Data Sources* at rsvp/fecon235#7
<rsvp/fecon235#7> in detail. The situation is
still in flux.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#395 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AEmxHHHorKEjLeSxAFue6kw2LgIXp00bks5slT4wgaJpZM4PZuI_>
.
|
It is easy to fix just change the googles daily.py file to look llike this one. |
I just ran into this issue with version 0.5.0 and confirmed that the fix suggested above by @innocentkithinji does restore expected functionality. |
Fixed in #404 |
import pandas_datareader.data as web
import datetime
start = datetime.datetime(2010, 1, 1)
end = datetime.datetime(2015, 5, 9)
web.DataReader('AAPL', 'google', start, end)
getting an year data irrespective of start and end dates
The text was updated successfully, but these errors were encountered: