ValueRaider

Results 45 issues of ValueRaider

Yahoo sometimes returns this week price data across two rows - todays data separated from rest-of-week. Seems to depend on the clock time (e.g. evening after exchange closed) and what...

I was playing with 15m data which is created internally from 30m data - the price-after-end-date bug (https://github.com/ranaroussi/yfinance/pull/1026) was messing with the 15m->30 conversion. So just moving the bug-fix up...

When running `Ticker()` many times the init time is significant. Caused by `utils.empty_df()` calls, but these can be moved out into `get_fundamentals()`. Reduces runtime of 1000 calls from seconds to...

If prices fetch failed and user set 'period' then print tailored error message if not in valid period values returned by Yahoo. What's weird is '1h' is technically invalid but...

Keeping NaNs rows returned by Yahoo may be useful because the timepoints are still valid so provides list of trading intervals. New argument `keepna=False` controls whether to keep/drop these NaN...

This is a **proposed** fix for #1030 - if `period` is set, and user also set `start` or `end`, then ignore `start` and `end` and print a message to user....

Dividends and splits should be _merged_ with price data not appended to bottom, produces a cleaner table (less NaNs). For weekly/monthly intervals, backdate events to start of week/month for a...

If ticker lacked `_sustainability` or `_recommendations` because Yahoo lacked, was causing `info[]` to be recreated every call.

### Improvements to `requests_cache` session use to encourage users use. ~- Replace 'datetime.now()' with midnight~ ~Some financial data was being fetched using parameters derived from `datetime.now()`, so obviously will never...

To support PR #926 will be useful to cache `info["quoteType"]`. I suggest refactoring `_TzCache` to be generic by accepting a new third argument - `key`, e.g. `key="quoteType"`. Need to refactor...

feature request