ValueRaider

Results 898 comments of ValueRaider

I'm getting a match between Yahoo and yfinance for May 23rd. Are you sure you're loading the fork?

``` import yfinance as yf print(yf) # Confirm you've loaded my fork ``` Also your command above won't download the correct code. The fix is in a branch, in the...

*sigh* The fix is in a **branch** in my fork. The url goes direct to it, you can't miss it.

Yes it is. You download the repository, then switch to the branch. Also `git clone` has an option to clone branch instead of `main`

I need to be convinced that you are loading my branch. Run this: ``` ... import yfinance as yf if "site-packages" in yf.__path__[0]: print("Not loading forked repository, but: "+yf.__path__[0]) import...

Post code that reproduces error.

Your code is bad. You don't need to be incrementing times because they're in the index: ``` for n in df.index: ``` So you don't need to fill in missing.

@ranaroussi , do you have any memory of Yahoo returning NaNs by mistake, where a later request returned data for same timepoints? Assuming that timepoint is historic so Yahoo didn't...

Hi @git-shogg. Thanks for the effort, but can you reduce divergence from the main codebase? Restore the attribute names (e.g. `financials` not `income_statement`) and make the table structure same. Then...

I've figured out how to get accurate quarterly data. The secret is this url e.g. > https://query2.finance.yahoo.com/ws/fundamentals-timeseries/v1/finance/timeseries/JPM?symbol=JPM&type=quarterlyBasicEPS&period1=493590046&period2=1659095385 Problem is I don't have time to polish into a full nice feature,...