-
-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dividend Ex-Date returns Dividend Pay Date #287
Comments
I don't think anything's wrong with yahoo_time <- function(x) { .POSIXct(x, tz = "UTC") }
msft <- getQuote("MSFT", what = what_metrics)
# don't have dplyr installed in my dev environment
within(msft, {
`Ex-Dividend Date` <- from_utc(`Ex-Dividend Date`)
`Earnings Timestamp` <- from_utc(`Earnings Timestamp`)
}) Regarding the Earnings Timestamp column, I can't fix that. |
I'm sorry, I might have not been clear, I don't think this is a problem of date calculation. Ex Dividend Date >> Nov 20, 2019 and Dividend Pay Date >> Dec 12, 2019 Your code is also returning the Dividend Pay Date instead of the Ex-Dividend Date I would also expect to be able to have access to both dates (I understand if yahoo API might not give that but the naming of the variable is confusing). |
I didn't read your initial post carefully enough. Thanks for clarifying! So I'll fix. Thanks for the report! |
Thanks again for the report! This should be fixed now. Please let me know if I missed something. |
Description
I'm trying to get the dividends dates (I see "Dividend Pay Date" is commented out in
getQuote()
source code). So I should probably not get the "Dividend Pay Date" but I should be getting the "Ex-Dividend Date".Produces
Expected behavior
https://finance.yahoo.com/quote/MSFT?p=MSFT
https://www.nasdaq.com/market-activity/stocks/msft
Somewhat separate issue, the Earnings timestamp shows the past timestamp (not sure if this is correct behavior, given yahoo shows an estimate future earnings report)
The text was updated successfully, but these errors were encountered: