quantmod 0.4-8 on CRAN
[This article was first published on FOSS Trading, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I pushed a bug-fix release of quantmod to CRAN last night. The major changes were toWant to share your content on R-bloggers? click here if you have a blog, or here if you don't.
All three providers made breaking changes to their URLs/interfaces.
getSymbols.google also got some love. It now honors all arguments set via setSymbolLookup (#138), and it correctly parses the date column in non-English locales (#140).
There’s a handy new argument to getDividends: split.adjust. It allows you to request dividends unadjusted for splits (#128). Yahoo provides split-adjusted dividends, so you previously had to manually unadjust them for splits if you wanted the original raw values. To import the raw unadjusted dividends, just call:
rawDiv <- getDividends("IBM", split.adjust = FALSE)
Note that the default is split.adjust = TRUE to maintain backward-compatibility.
To leave a comment for the author, please follow the link and comment on their blog: FOSS Trading.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.