1. #thanks to the examples from John Kiernander
  2. #//dimplejs.org/advanced_examples_viewer.html?id=advanced_matrix
  3. #//dimplejs.org/advanced_examples_viewer.html?id=advanced_trellis_bar
  4. require(reshape2)
  5. require(rCharts)
  6. require(quantmod)
  7. require(PerformanceAnalytics)
  8. tckrs <- c('VBMFX','VFINX')
  9. #outer lapply to make weekly
  10. #inner lapply to get the symbols from Yahoo! Finance
  11. prices <- lapply(lapply(
  12. tckrs,
  13. getSymbols, auto.assign=FALSE, from = '1990-01-01'
  14. ),to.weekly)
  15. #merge our two symbols in one xts
  16. prices.xts <- na.omit(merge(prices[[1]][,6],prices[[2]][,6]))
  17. #name columns same as tickers
  18. colnames(prices.xts) <- tckrs
  19. #get 1 period returns
  20. returns.xts <- prices.xts/lag(prices.xts,k=1) - 1
  21. #make first 0 rather than NA
  22. returns.xts[1,] <- 0
  23. cumul.xts <- cumprod(1+returns.xts)
  24. #get the rolling 150 week (about 3y) OmegaSharpe measure on the tickers
  25. oSharpe <- rollapply(returns.xts, FUN=OmegaSharpeRatio, width = 150, fill = 0 )
  26. #get the drawdown
  27. drawdown <- Drawdowns(returns.xts)
  28. #melt the prices and rolling OmegaSharpe to combine for plotting
  29. cumul.melt <- melt(
  30. data.frame(format(index(cumul.xts)), rep("CumulGrowth",NROW(cumul.xts)), cumul.xts),
  31. id.vars = 1:2
  32. )
  33. oSharpe.melt <- melt(
  34. data.frame(format(index(oSharpe)),rep("OmegaSharpe",NROW(oSharpe)),oSharpe),
  35. id.vars = 1:2
  36. )
  37. drawdown.melt <- melt(
  38. data.frame(format(index(drawdown)),rep("Drawdown",NROW(drawdown)),drawdown),
  39. id.vars = 1:2
  40. )
  41. colnames(cumul.melt) <- c("date","metric","fund","value")
  42. colnames(oSharpe.melt) <- c("date","metric","fund","value")
  43. colnames(drawdown.melt) <- c("date","metric","fund","value")
  44. oSharpeCumul <- rbind( cumul.melt, oSharpe.melt, drawdown.melt )
  45. #make an interactive d3 plot of the rollilng OmegaSharpe
  46. dSharpe = dPlot(
  47. value ~ date,
  48. groups = "fund",
  49. data = oSharpeCumul,
  50. type = "line",
  51. height = 500,
  52. width = 900
  53. )
  54. dSharpe$xAxis(
  55. type = "addTimeAxis",
  56. inputFormat = "%Y-%m-%d",
  57. outputFormat = "%Y"
  58. )
  59. dSharpe$facet( y = "metric")
  60. dSharpe$templates$script = system.file(
  61. "libraries/dimple/layouts/chartFacet.html",
  62. package = "rCharts"
  63. )
  64. dSharpe