-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Discrepancy Between yf.download & yf.Ticker().history() #1036
Comments
I have a branch that should fix this but needs volunteers to test before I merge. See #954 (comment) |
Thank you @ValueRaider for your quick response! I did a bit more testing & it looks like something to do with the start being specified as well:
The same command with 'start' included: I am not much of a programmer & have never contributed to open source but would be willing to try to help test if that would be helpful. Any suggestions on how to help? |
Click the link. Then just use it, provide feedback. |
This should be solved in recent releases. |
I am looking at Wheat Futures data (ticker=ZWZ22.CBT) & getting a discrepancy when running the following:
yf.Ticker("ZWZ22.CBT").history(interval="1d",period="10d").tail(30)
Returns data including today's trading day 2022-07-18.
Comparing this to:
yf.download('ZWZ22.CBT')
Which doesn't include 2022-07-18. The last day is 2022-07-15.
Why is there this discrepancy?
The text was updated successfully, but these errors were encountered: