Description Usage Arguments Value Author(s) Examples
Wrapper function for computing the standard error of risk/performance measure estimators
1 2 3 | EstimatorSE(data, ..., estimator.fun = c("Mean", "SD", "VaR", "ES", "SR",
"SoR", "STARR"), se.method = c("none", "IFiid", "IFcor", "BOOTiid",
"BOOTcor"))
|
data |
xts object of the data |
... |
extra arugements to be passed to lower level functions, see details |
estimator.fun |
a character string indicating which risk/performancem measure's standard error
should be computed. One of |
se.method |
a character string indicating which method should be used to compute
the standard error of the estimated standard deviation. One of |
the standard error of the specified risk/performance measure using the specified method
Xin Chen, chenx26@uw.edu
1 2 3 4 5 6 | data(edhec)
EstimatorSE(edhec,estimator.fun="SD",se.method="IFiid")
EstimatorSE(edhec,estimator.fun="ES",se.method="IFcor")
EstimatorSE(edhec,estimator.fun="ES",se.method="BOOTiid", nsim=100)
EstimatorSE(edhec,estimator.fun="ES",se.method="BOOTcor", nsim=100,
sim = "fixed", l = round(nrow(edhec)/5))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.