Autocorrelation and Serial Correlation
When regression errors are correlated across time, why it inflates or deflates naive standard errors, the Newey–West HAC estimator, the Durbin–Watson statistic, and the overlapping-returns trap that fools every backtester.
Prerequisites: Ordinary Least Squares (OLS), Heteroskedasticity
Serial correlation is heteroskedasticity's time-series sibling: instead of error variances differing, error terms are correlated across time. It is endemic in finance because returns are sampled sequentially, signals persist, and, most insidiously, researchers routinely build overlapping observations that manufacture correlation out of thin air. Like heteroskedasticity, it leaves OLS coefficients unbiased while corrupting the standard errors, but the corruption is usually worse and the fix (Newey–West) is more delicate.
The problem
In the model , serial correlation means the error covariance matrix has non-zero off-diagonals:
The simplest model is a first-order autoregressive error, with and white noise, giving . As with heteroskedasticity, strict exogeneity is intact, so OLS stays unbiased and consistent. What breaks is the variance: the true covariance is with a now-dense , and the naive is wrong.
Why the direction matters
With positive autocorrelation (), by far the common case in finance, the naive standard errors are too small, sometimes dramatically. The intuition: correlated observations carry less independent information than their count suggests, so you have fewer "effective" data points than . For an AR(1) error the effective sample size is roughly ; at that is one-third of . Treating correlated points as independent ones overstates precision, inflates -statistics, and produces false significance, the exact mechanism behind many "significant" backtests that evaporate.
The Newey–West HAC estimator
The robust fix generalizes White to correlated errors: estimate the sandwich meat = directly from residuals, including cross-time products. Newey and West's heteroskedasticity-and-autocorrelation-consistent (HAC) estimator is
with Bartlett weights that taper to zero. The weights are not cosmetic: they guarantee is positive semidefinite (a valid covariance), which a naive truncated sum would not be. The lag length is the key tuning choice, it must grow with the sample (a common rule is ) and, for overlapping returns, must be at least the overlap horizon. The resulting HAC standard errors are the standard defense for any time-series regression on a desk.
Detecting it: Durbin–Watson and beyond
The classic Durbin–Watson statistic tests for first-order autocorrelation:
So means no autocorrelation, strong positive, strong negative. Its limitations, it only checks lag 1, and is invalid when a lagged dependent variable is a regressor, make the Breusch–Godfrey LM test (regress residuals on their own lags and the regressors) and the Ljung–Box portmanteau test the more general modern tools. Plotting the residual ACF is the fastest diagnostic.
The overlapping-returns trap
This deserves its own spotlight because it fools so many practitioners. To study -period returns you might regress the overlapping sum on a signal, sampled every period. Even if one-period returns are i.i.d., the overlapping -period returns share of their components with their neighbors, mechanically inducing autocorrelation up to lag in the dependent variable and hence the errors. Naive standard errors can understate the truth by a factor of or more, turning noise into "predictability." Long-horizon return-predictability regressions (dividend yield predicting 5-year returns) are the notorious example. The mandatory fixes: Newey–West with , Hansen–Hodrick standard errors, or simply using non-overlapping observations.
Worked example
You regress annual (12-month overlapping, sampled monthly) returns on the dividend–price ratio and get with a naive . The 12-month overlap induces autocorrelation through lag 11. Applying Newey–West with typically cuts the -statistic to roughly –, the "strong" predictability was mostly manufactured standard-error understatement. Same coefficient, honest uncertainty, very different conclusion.
Failure modes in financial data
- Choosing badly. Too small under-corrects (residual autocorrelation leaks through); too large adds noise and can make the estimate erratic. For overlapping data, must cover the overlap.
- Autocorrelation as a signal, not a nuisance. In the errors it's a nuisance to robustify; in the series itself it's forecastable structure, that is the domain of ARMA Models. Don't robustify away predictability you could model.
- Combined with heteroskedasticity. Real financial errors have both; Newey–West handles both simultaneously (it is HAC, not just AC), which is why it, not White, is the time-series default.
- Illiquidity-induced smoothing. Stale prices in illiquid assets (credit, real estate, some hedge-fund NAVs) induce spurious positive autocorrelation that understates volatility and overstates Sharpe, a data artifact, not alpha.
In interviews
Lead with the same unbiased-but-wrong-SE structure as heteroskedasticity, then specialize: positive serial correlation makes naive standard errors too small, inflating -stats. Be able to explain the effective-sample-size intuition ( for AR(1)) and to name Newey–West HAC as the fix, including why the Bartlett weights exist (to keep the covariance positive semidefinite). The overlapping-returns question is a favorite for research roles, explain how overlap manufactures autocorrelation and inflates significance, and that the fix is HAC with lag overlap or non-overlapping sampling. Knowing Durbin–Watson is a reliable quick win.
Practice in interviews
Further reading
- Newey & West (1987), A Simple, Positive Semi-Definite HAC Covariance Matrix
- Hamilton, Time Series Analysis (Ch. 10)
- Greene, Econometric Analysis (Ch. 20)