ValueRaider
ValueRaider
I've changed my mind on renaming columns because it will break a lot of user code. Better to resolve through documentation, whether in README or Wiki.
But `ignore_tz=True` is default behaviour. Sounds like you copy-pasted from README without reading - post your code please.
I understand now, behaviour has changed since old version. Do you mind submitting a PR?
Yes. I know it's trivial but I want community to be more involved in code. Edit: update doc & README too, says default = True
Options: - stop spamming - [fetcher smarter](https://github.com/ranaroussi/yfinance#smarter-scraping) - [yfinance_cache](https://github.com/ValueRaider/yfinance-cache)
What code does is different to title. I expected this: `start = max(start, minimum_allowed_start)` but code is doing this: ``` if start is None: start = minimum_allowed_start ``` Btw, I...
First part - just me being pedantic, not really important. Your change doesn't prevent user from providing start date before minimum allowed. E.g. `history(interval='1m', start='2022-01-01')` Second part - I've pushed...
Because `start` doesn't need to be defined, it turns out (I think with minimal testing). Let Yahoo handle minimum start date.
Ah I gotcha. I've rolled back my commit, you might need to re-clone branch.
I'm only one actually approving merges currently, and a few others sometimes check in to comment/object. Not enough given size of userbase but :shrug: Rough process is: - satisfy myself...