I'm trying to get symbol data with quantmod using this code.
getSymbols(c("^DJI"),src='yahoo',from='2014-11-24',to='2017-11-24')
And I get the error
Error in 'colnames<-'('*tmp(', value = c("DJI.open", "DJI.High", "DJI.Low", :
length of 'dimnames' [2] not equal to array extent
Thanks for any help.
Edit: I get the same error with normal tickers.
getSymbols(c("DWDP","AAPL","MCD","MRK","IBM","MMM","KO","DIS","CSCO","PG","TRV","UTX","HD","PFE","MSFT","VZ","GS","WMT","GE","INTC","BA","JPM","AXP","XOM","NKE","CAT","CVX","JNJ","UNH","V"),src='yahoo',from='2014-11-24',to='2017-11-24')
quantmod_0.4-11
. Maybe look atconflicts(detail = TRUE)
to see if you've accidentally clobbered some important function. – MrFlick