
Depending on users' choices of estimator (realized covariance (RCOVestimator) and realized variance (RVestimator)), the function returns the realized beta, defined as the ratio between both.
The realized beta is given by
in which
rBeta(
rData,
rIndex,
RCOVestimator = "rCov",
RVestimator = "rRVar",
makeReturns = FALSE,
...
)
numeric
a xts
object containing all returns in period t for one asset.
a xts
object containing return in period t for an index.
can be chosen among realized covariance estimators: "rCov"
, "rAVGCov"
, "rBPCov"
, "rHYCov"
, "rKernelCov"
, "rOWCov"
, "rRTSCov"
, "rThresholdCov"
and "rTSCov"
"rCov"
by default.
can be chosen among realized variance estimators: "rRVar"
, "rMinRVar"
and "rMedRVar"
. "rRVar"
by default.
In case of missing RVestimator
, RCOVestimator
function applying for rIndex
will be used.
boolean, should be TRUE
when rData
contains prices instead of returns. FALSE
by default.
arguments passed to RCOVestimator
and RVestimator
Giang Nguyen, Jonathan Cornelissen, Kris Boudt, Onno Kleen, and Emil Sjoerup.
Suppose there are
By default, the RCov is used and the realized beta coefficient is computed as:
Note: The function does not support to calculate betas across multiple days.
Barndorff-Nielsen, O. E. and Shephard, N. (2004). Econometric analysis of realized covariation: high frequency based covariance, regression, and correlation in financial economics. Econometrica, 72, 885-925.
if (FALSE) {
library("xts")
a <- as.xts(sampleOneMinuteData[as.Date(DT) == "2001-08-04", list(DT, MARKET)])
b <- as.xts(sampleOneMinuteData[as.Date(DT) == "2001-08-04", list(DT, STOCK)])
rBeta(a, b, RCOVestimator = "rBPCov", RVestimator = "rMinRVar", makeReturns = TRUE)
}
Run the code above in your browser using DataLab