ValueRaider
ValueRaider
Could be a timezone bug. I'm testing a timezone fix that might address your issue: https://github.com/ValueRaider/yfinance/tree/fix/timezone You'll have to play with sys.path.insert to load this over PIP. Give it a...
How did you verify loading my branch? Maybe you were still loading official yfinance. I use `print(yf)` to verify.
Can you do some debugging? Because of the time it happens is difficult for me to debug. Simply edit the Python files directly. In base.py, print out `quotes` variable immediately...
Turn off logging? It's not helping anyway. And confirm that my branch of base.py is being loaded - insert a `raise Exception("testing")` into it. No exception = not loading branch.
This is a Yahoo problem, it's simply missing the data: Aug 31, 2022 | 1,528.05 | 1,539.85 | 1,528.05 | 1,539.69 | 1,539.69 | 21,941,522,432 -- | -- | --...
I have a branch that fixes all this datetime/timezone stuff. But not merged in because I want volunteers to test it - I think it's bug-free, but changes are relatively...
This should fix it: https://github.com/ValueRaider/yfinance/tree/fix/timezone It's a fork, just download it and load like this: ``` import sys sys.path.insert(0, "path/to/my/fork/of/yfinance") import yfinance as yf print(yf) # Confirm you have loaded...
@ProgrammingDao I see you assisting in issues so I assume you use `yfinance` - can you field-test some bug fixes for me? Just in case there are edge cases where...
Good spot @ProgrammingDao. I assumed it was a timezone bug. When Yahoo is missing data there's little `yfinance` can do. I suppose the open and close could be inferred, but...
I'm testing a timezone fix, it should address your issue: https://github.com/ValueRaider/yfinance/tree/fix/timezone You'll have to play with `sys.path.insert` to load this over PIP. Give it a play.