Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 .

share|improve this question
Works fine for me on 2.15.2 / Windows i386-w64-mingw32/i386 – MattBagg Dec 5 '12 at 5:44
Does not work for me on windows either: > require(quantmod) > getSymbols("SPY") [1] "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-w64-mingw32/x64 (64-bit) – Samo Dec 5 '12 at 14:35
For what it's worth, I am using xts_0.8-8 and zoo_1.7-9 – MattBagg Dec 5 '12 at 15:07
Yes, you are right, there must be something wrong in xts_0.8-9. See also this stackoverflow.com/questions/13734920/possible-bug-in-latest-xts . – Samo Dec 6 '12 at 0:21

closed as too localized by GSee, Joshua Ulrich, Jim Garrison, Ed Heal, Steve Fenton Dec 6 '12 at 11:07

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.