rCholCov {highfrequency} | R Documentation |
CholCov estimator
Description
Positive semi-definite covariance estimation using the CholCov algorithm. The algorithm estimates the integrated covariance matrix by sequentially adding series and using 'refreshTime' to synchronize the observations. This is done in order of liquidity, which means that the algorithm uses more data points than most other estimation techniques.
Usage
rCholCov(
pData,
IVest = "rMRCov",
COVest = "rMRCov",
criterion = "squared duration",
...
)
Arguments
pData |
a list. Each list-item i contains an |
IVest |
integrated variance estimator, default is |
COVest |
covariance estimator, default is |
criterion |
criterion to use for sorting the data according to liquidity.
Possible values are |
... |
additional arguments to pass to |
Details
Additional arguments for IVest
and COVest
should be passed in the ... argument.
For the rMRCov
estimator, which is the default, the theta
and delta
parameters can be set. These default to 1 and 0.1 respectively.
The CholCov estimation algorithm is useful for estimating covariances of series that are sampled asynchronously and with different liquidities.
The CholCov estimation algorithm is as follows:
First sort the series in terms of decreasing liquidity according to a liquidity criterion, such that series
is the most liquid, and series
the least.
Step 1:
Apply refresh-time on
to obtain the grid
.
Estimate
using an IV estimator on
.
Step 2:
Apply refresh-time on
to obtain the grid
.
Estimate
as the realized beta between
and
. Set
.
Estimate
using an IV estimator on
.
Step 3:
Apply refresh-time on
to obtain the grid
.
Estimate
as the realized beta between
and
. Set
.
Apply refresh-time on
to obtain the grid
.
Re-estimate
at the new grid, such that the projections
and
are orthogonal.
Estimate
as the realized beta between
and
. Set
.
Estimate
using an IV estimator on
.
Step 4 to d:
Continue in the same fashion by sampling over
to estimate
using the smallest possible set.
Re-estimate the
with
at every new grid to obtain orthogonal projections.
Estimate the
as the IV of projections based on the final estimates,
.
Value
a list containing the covariance matrix "CholCov"
, and the Cholesky decomposition "L"
and "G"
such that .
Author(s)
Emil Sjoerup
References
Boudt, K., Laurent, S., Lunde, A., Quaedvlieg, R., and Sauri, O. (2017). Positive semidefinite integrated covariance estimation, factorizations and asynchronicity. Journal of Econometrics, 196, 347-367.
See Also
ICov
for a list of implemented estimators of the integrated covariance.