1. require(quantmod)
  2. require(reshape2)
  3. require(rCharts)
  4. #get sp500 prices from Yahoo! Finance
  5. sp500 <- getSymbols("^GSPC", auto.assign = FALSE)
  6. #add 200 day moving average
  7. sp500$ma <- runMean( sp500[,4], n = 200)
  8. #get date, close, and 200day mov avg as a data.frame
  9. sp500.df <- data.frame(index(sp500),coredata(sp500)[,c(4,7)])
  10. colnames(sp500.df) <- c("date","close","200dMovAvg")
  11. #melt to long format
  12. sp500.melt <- melt( sp500.df, id.vars = 1 )
  13. #get dates to a javascript favorite format
  14. sp500.melt$date <- as.numeric(as.POSIXct(sp500.melt$date)) * 1000
  15. #do a NVD3 lineWithFocus chart
  16. n1 <- nPlot(
  17. value ~ date,
  18. group = "variable",
  19. data = sp500.melt,
  20. type = "lineWithFocusChart",
  21. height = 400,
  22. width = 600
  23. )
  24. #set xAxis up to format dates
  25. n1$xAxis(tickFormat = "#!function(d) {return d3.time.format('%b %d, %Y')(new Date(d))}!#")
  26. #xAxis auto sets x2Axis, but I like a different format for x2Axis
  27. n1$x2Axis(tickFormat = "#!function(d) {return d3.time.format('%Y')(new Date(d))}!#")
  28. #set yAxis up to format numbers
  29. n1$yAxis(tickFormat = "#!function(d) {return d3.format('0,.0')(d)}!#")
  30. n1