finnhub-python icon indicating copy to clipboard operation
finnhub-python copied to clipboard

ETFs and Mutual Funds missing dividends since 2019-01-01

Open aditya08 opened this issue 4 years ago • 2 comments

MWE:

import finnhub from datetime import date stock = 'VTI' print(finnhub_client.stock_dividends(stock, _from="2019-01-01", to=date.today()))

returns []

print(finnhub_client.stock_dividends(stock, _from="2018-01-01", to=date.today()))

returns [{'symbol': 'VTI', 'date': '2018-06-22', 'amount': 0.6034, 'adjustedAmount': 0.6034, 'payDate': '2018-06-27', 'recordDate': '2018-06-25', 'declarationDate': '2018-06-20', 'currency': 'USD'}, {'symbol': 'VTI', 'date': '2018-03-22', 'amount': 0.5661, 'adjustedAmount': 0.5661, 'payDate': '2018-03-27', 'recordDate': '2018-03-23', 'declarationDate': '2018-03-20', 'currency': 'USD'}]

Is there a different API call to obtain recent dividend information for ETFs and Mutual Funds?

aditya08 avatar Oct 23 '20 18:10 aditya08

Looks like dividend history for ETFs/Mutual Funds is WIP.

Sorry for the late reply. We don't have dividends data for ETFs at this point. We are workin hard on it

Originally posted by @finnhubio in https://github.com/finnhubio/Finnhub-API/issues/90#issuecomment-629725365

aditya08 avatar Oct 23 '20 18:10 aditya08

Hi there, I know the reply is probably late but ETFs dividends have been fully available on our API for a while now.

finnhubio avatar Oct 03 '21 15:10 finnhubio