If I use quantmod::adjustOHLC I managed to get the following error:
> require(quantmod)
Loading required package: quantmod
Loading required package: Defaults
Loading required package: xts
Loading required package: zoo
Attaching package: ‘zoo’
The following object(s) are masked from ‘package:base’:
as.Date, as.Date.numeric
Loading required package: TTR
>
> getSymbols("SPY")
[1] "SPY"
> SPY <- adjustOHLC(SPY)
Error in structure(cbind((ratio * (Op(x) - Cl(x)) + Adjusted), (ratio * :
length of 'dimnames' [2] not equal to array extent
> sessionInfo()
R version 2.15.2 (2012-10-26)
Platform: x86_64-pc-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=en_US.UTF-8
[9] LC_ADDRESS=en_US.UTF-8 LC_TELEPHONE=en_US.UTF-8
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] quantmod_0.3-21 TTR_0.21-1 xts_0.8-9 zoo_1.7-10
[5] Defaults_1.1-1 rj_1.1.0-4
loaded via a namespace (and not attached):
[1] grid_2.15.2 lattice_0.20-0 tools_2.15.2
Is this problem on my end? Or is this yahoo issue?
EDIT: This seems to be an issue in latest xts from r-forge xts_0.8-9 since it works perfectly in xts from CRAN xts_0.8-8. Please also see Possible bug in latest xts .