-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Fix: History caching #2345
Fix: History caching #2345
Conversation
Not keen on default max. Suggestions:
Hope that makes sense |
@ValueRaider what about if you have different days? I wouldn't want the cache for data today to be returned for the data yesterday or a week ago etc |
yfinance already does via |
I was unsure on whether I should change default behavior? People using I don't think I changed default behavior in this PR |
@dhruvan2006 good point, I missed the default is already max. max it is |
@dhruvan2006 if we want to refactor the caching behaviour, I believe it is not enough to create a history_max as also the metadata is different for different time periods. Exchange schedules (tradingPeriods) are only returned in metadata for intraday and that is why get_history_metadata depends on intraday data. Perhaps a more future proof change would be to refactor the structure so that _history is actually an array containing elements named data and metadata. Array keys could be the valid time periods. But as said this is a larger refactor. For a simple solution just addressing #2344 I created a PR #2346 but if this rework is completed both for the data and metadata then my PR can be discarded. |
@dhruvan2006 bump #2345 (comment) Would be nice to get this or #2346 merged soon. |
a452f18
to
36921dc
Compare
@ValueRaider Implemented your data flow using Unsure whether |
36921dc
to
32ad0a7
Compare
It does, it adds more columns to
|
32ad0a7
to
e17d5f5
Compare
Cool. I added it as a |
bug with cache_key in _get_history_cache |
what is it? |
Is it intentional that calling history() does not store the fetched results in _history_cache? Similarly history() doesn't try to utilise what is in the _history_cache instead goes and fetches directly from Yahoo regardless what we have in _history_cache? |
@JanMkl yes, keep scope focused on these get_ functions. There can be a debate whether this is needed at all - yfinance started with Lines 413 to 415 in fa3094d
|
lgtm |
Just test whether the cache is being hit with |
e17d5f5
to
f831ac2
Compare
Fixed |
Changes
history()
now only caches data if the period ismax
_history
to_max_history
to ensure clarityCloses #2344