Doug Guthrie

Results 50 comments of Doug Guthrie

Yeah, I’ve already begun looking into incorporating that functionality. Should be available in the next version.

I'd be more than happy to accept a pull request, but I don't have any plans to change the way requests are made at the moment.

The reason you're not getting any data back for Facebook is because they haven't paid any dividends yet. I'm not sure what other tickers you've tried, but it seems to...

If you're a premium subscriber, you can retrieve that data through [`p_get_financial_data`](https://yahooquery.dpguthrie.com/guide/ticker/premium/#p_get_financial_data). Otherwise, you're limited to either the four most recent quarters or years. ``` >>> t = Ticker('aapl', username=,...

You're looking for dividend paid per share: ``` t = Ticker(symbols, asynchronous=True) df = t.history(period='max') if 'dividends' in df: df[df['dividends'] != 0]['dividends'] ``` Since you're probably not the only one...

Here's what I'm seeing on YF: ![image](https://user-images.githubusercontent.com/10198967/103293713-9ef5a280-49ad-11eb-9fc9-911b218d7a5f.png) The 54.79 closing price seen on YF matches what I'm getting from the library.

That's interesting. I'll have to do a little more digging, but the problem appears to be on YF's side, as I'm just pulling in the data they're showing. If you...

How often are you making this request? I haven't run into this problem yet but my guess is that YF is actively blocking the request either because the number of...

The progress bar is utilized in making the requests, not in combining all the data frames once the requests are complete. If you have a better solution, please feel free...

I don't have this in the `history` method yet but will add it in the next version release. So, stay tuned.