ValueRaider

Results 898 comments of ValueRaider

Their code definitely returns different values, I tried it. If you didn't get error "has no attribute 'financials'" then you didn't load their fork ; you can also verify with...

Then you aren't actually running git-shogg code. How did you verify you loaded their code instead of official?

That sounds like it should be git-shogg. Did `IBM.financials` cause error? It should because git-shogg changed name. A different way to load is `sys.path.insert` (examples online). Doesn't interfere with PIP...

What happens if you use `yf.Ticker("QQQ").history()` instead? Might solve the hanging problem and instead fail immediately (because you're probably triggering Yahoo spam limiting)

This is easy to fix by using timezone of the relevant stock exchange. Suppose though `start=datetime(2022, 1, 1, 12, 0)` - which timezone should that be? Not clear if user...

I've pushed a fix to my fork: 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.

Maybe Yahoo simply isn't returning the data? Easy to check, just edit code to print out the data that yfinance receives.

1h interval returns Sunday data. Please show screenshot or url to Yahoo showing Sunday daily data because I don't see it.

Ah, timezones. I think I've fixed that but need a guinea pig to test it. Can you volunteer? Grab my fork: https://github.com/ValueRaider/yfinance/tree/fix/timezone And load like: ``` import sys sys.path.insert(0,"path/to/my/yfinance") import...