199219941996199820002002200420062008201020120.050.100.150.200.250.300.350.400.450.50

  1. require(rCharts)
  2. rChart <- rCharts$new()
  3. rChart$setLib('libraries/widgets/d3_horizon')
  4. rChart$setTemplate(script = "libraries/widgets/d3_horizon/layouts/d3_horizon_axes.html")
  5. rChart$set(
  6. bands = 3,
  7. mode = "mirror",
  8. interpolate = "basis",
  9. width = 700,
  10. height = 300
  11. )
  12. require(quantmod)
  13. #get sp500 prices and convert them to monthly
  14. SP500 <- to.monthly(
  15. getSymbols("^GSPC", from = "1990-01-01", auto.assign = FALSE)
  16. )
  17. #get 12 month rolling return
  18. SP500.ret <- na.omit(ROC(SP500[,4], type = "discrete", n = 12))
  19. SP500.df <- cbind(
  20. as.numeric(as.POSIXct(as.Date(index(SP500.ret)))),
  21. coredata(SP500.ret)
  22. )
  23. colnames(SP500.df) <- c("date","SP500")
  24. #supply the data to our dataless but no longer naked rChart
  25. rChart$set(data = SP500.df)
  26. rChart$set(x = "date", y = "SP500")
  27. rChart