ValueRaider
ValueRaider
`Ticker.info` is fixed and `fast_info` deprecated in latest release
@asafravid Not helpful. This appears to be a simple problem for someone to debug & fix, clue is one ticker doesn't return data so maybe messing up merge.
> remove the empty dataframe Is this best solution? My concern is users might think `yfinance` is failing to fetch and post Issues.
We have a fix but waiting for someone to test, can you? It's broken in other places too. Git branch `hotfix/proxy`, instructions in #1080
Just use it normally and confirm/deny issue fixed. proxy is tricky to test because I don't have one. Try fetching history and some fundamental data like `Ticker.cashflow`
`ignore_tz` only affects when combining the price tables. Still need timezones to localize the dates. Run this and report output: ``` for tkr in ticker_list: dat = yf.Ticker(tkr) tz =...
> I'm suspecting this is due to a non correct usage of the proxy Great clue. The timezone fetch was happening before `yfinance` had prepared the proxy. Can you try...
> removed the last row of the block as it'd reformat proxy info as a dict But `yfinance` has always put in a dict. What happens if you leave it?
Can you switch to branch `hotfix/proxy` and run the new test: `tests/ticker.py :: test_goodTicker_withProxy`. Obviously set a proxy in `setUpClass`.
Run this: `Ticker(tkr)._fetch_ticker_tz(debug_mode=True, proxy=proxy, timeout=10)` It should print any errors occurring in the `get`.