Liu, X. and Chan, K. W. (2025). Positive-definite Converging Kernel Estimation of Long-run Variance. Journal of Business & Economic Statistics, 43, 835-849.
Abstract
Kernel estimators have been popular for decades in long-run variance estimation. To minimize the loss of efficiency measured by the mean-squared error in important aspects of kernel estimation, we propose a novel class of converging kernel estimators with three major properties: (a) the optimal bandwidth choice is model-free; (b) positive-definiteness is ensured through a principle-driven aggregation technique with no loss of theoretical efficiency; and (c) potentially misspecified prewhitening models and transformations of the time series do not harm the asymptotic efficiency. A shrinkage prewhitening transformation is proposed for more robust finite-sample performance. The estimator has a positive bias that diminishes with the sample size so that it is more conservative compared with the typically negatively biased classical estimators. The proposal improves upon standard kernel functions and can be well generalized to the multivariate case. We discuss its performance through simulation results and a real-data application in the forecast breakdown test.
Journal official link: 10.1080/07350015.2024.2432945
R code for a special case of the proposed estimator (converging Bartlett kernel):
cklrv = function(x){ n = length(x) l = floor((3*n/2)^(1/3)) # universal optimal bandwidth (data-free) acvf = c(acf(x,lag.max=l,type="cov",plot=FALSE)$acf) w = (1+1/l)*(1-(0:l)/l)-(0:l)/l*(1-(0:l)/sqrt(l)) lrv = acvf[1]*w[1] + 2*sum(acvf[-1]*w[-1]) # standard estimator lrv}x = arima.sim(200, model=list(ar=.5,ma=.5))lrv(x) # true value = 9Boxplots of the standardized MSEs across 90 different ARMA(1,1) models with AR coefficients {±0.1, ±0.2, ..., ±0.9} and MA coefficients {0.05, ±0.35, ±0.55}. Independent N(0,1) noises are used.