Factors | 3 Year Rolling Beta

1942195619701983199719322012-1.50-1.00-0.500.000.501.001.50-1.921.76SMBHMLBAB

  1. #use monthly factor data from Betting Against Beta paper
  2. #This file contains monthly return of the Betting against Beta factors used in Frazzini A and L.H. Pedersen (2013), “Betting Against Beta"
  3. #Copyright ©2013 Andrea Frazzini and Lasse Heje Pedersen
  4. #combine factor data from Fama/French
  5. #See Fama and French, 1993
  6. #"Common Risk Factors in the Returns on Stocks and Bonds"
  7. #Journal of Financial Economics
  8. require(gdata)
  9. require(PerformanceAnalytics)
  10. require(factorAnalytics)
  11. require(quantmod)
  12. require(rCharts)
  13. #read spreadsheet
  14. babFactors <- read.xls(
  15. "//www.econ.yale.edu/~af227/data/BAB%20factors%20-%20Frazzini%20and%20Pedersen.xlsx"
  16. ,pattern = "caldt"
  17. ,blank.lines.skip = T
  18. ,stringsAsFactors = F
  19. )
  20. #convert spreadsheet data to R xts
  21. #remove % with gsub, make numeric, and divide by 100
  22. babFactors.xts <- as.xts(
  23. do.call(cbind,
  24. lapply(
  25. babFactors[,-1]
  26. ,function(x){
  27. df<-data.frame(as.numeric(
  28. gsub(
  29. x=x
  30. ,pattern="%"
  31. ,replacement=""
  32. )
  33. )/100)
  34. colnames(df) <- colnames(x)
  35. return(df)
  36. }
  37. )
  38. ) #date is first column; will use in order.by
  39. ,order.by = as.Date(paste0(babFactors[,1],"-01"),format="%Y%m-%d")
  40. )
  41. #now read Fama/French Factor data
  42. my.url="//mba.tuck.dartmouth.edu/pages/faculty/ken.french/ftp/F-F_Research_Data_Factors.zip"
  43. my.tempfile<-paste(tempdir(),"\\F-F_Research_Data_Factors.zip",sep="")
  44. my.usefile<-paste(tempdir(),"\\F-F_Research_Data_Factors.txt",sep="")
  45. download.file(my.url, my.tempfile, method="auto",
  46. quiet = FALSE, mode = "wb",cacheOK = TRUE)
  47. unzip(my.tempfile,exdir=tempdir(),junkpath=TRUE)
  48. #read space delimited text file extracted from zip
  49. french_factors <- read.table(file=my.usefile,
  50. header = TRUE, sep = "",
  51. as.is = TRUE,
  52. skip = 3, nrows=1052)
  53. #get dates ready for xts index
  54. datestoformat <- rownames(french_factors)
  55. datestoformat <- paste(substr(datestoformat,1,4),
  56. substr(datestoformat,5,7),"01",sep="-")
  57. #get xts for analysis
  58. french_factors.xts <- as.xts(french_factors,
  59. order.by=as.Date(datestoformat))
  60. french_factors.xts <- french_factors.xts/100
  61. factorsUS <- na.omit(merge(french_factors.xts,babFactors.xts[,1]))
  62. colnames(factorsUS)[5] <- "BAB"
  63. #not necessary but grab DJIA from FRED for sanity check
  64. djia <- to.monthly(getSymbols("DJIA",src="FRED",auto.assign=F))[,4]
  65. colnames(djia) <- "DowJonesIndu"
  66. index(djia) <- as.Date(index(djia))
  67. returnsFactors <- na.omit(
  68. merge(
  69. ROC(djia,n=1,type="discrete")
  70. ,factorsUS
  71. )
  72. )
  73. betasRolling <- rollapply(
  74. returnsFactors[,-1]
  75. , width = 36 #3 year or 36 month rolling
  76. , by.column=FALSE
  77. , by=1
  78. , FUN = function(x){
  79. fit.time <- fitTimeSeriesFactorModel(
  80. assets.names=colnames(x[,1]),
  81. factors.names=colnames(x[,-c(1,4)]),
  82. data=x,
  83. fit.method="OLS"
  84. )
  85. return(fit.time$beta)
  86. }
  87. )
  88. colnames(betasRolling) <- colnames(returnsFactors)[-c(1,2,5)]
  89. require(reshape2)
  90. betasRolling.melt <- melt(data.frame(index(betasRolling),betasRolling),id.vars=1)
  91. colnames(betasRolling.melt) <- c("date", "factor", "beta")
  92. nBeta <- nPlot(
  93. beta ~ date,
  94. group = "factor",
  95. data = na.omit(betasRolling.melt),
  96. type = "multiBarChart", #lineChart #stackedAreaChart, #bar, area don't work with negative
  97. height = 400,
  98. width = 700
  99. )
  100. #nBeta$chart(stacked = TRUE, useInteractiveGuideline=TRUE)
  101. nBeta$xAxis(tickFormat =
  102. "#!function(d) {return d3.time.format('%Y')(new Date(d * 24 * 60 * 60 * 1000));}!#"
  103. )
  104. nBeta$yAxis(tickFormat =
  105. "#!function(d) {return d3.format('0.2f')(d);}!#"
  106. )
  107. #nBeta
  108. nBeta$params$type = "lineChart"
  109. nBeta
  110. #chart.Correlation(returnsFactors)