Solved – Weak stationarity and ARMA-ARCH/GARCH models

garchstationaritytime seriesvolatility

I am slightly irritated about weak stationarity in connection to ARCH/GARCH models. I do not know the answer and I am not sure about it:

The basic question is:

Do we have to test weak stationarity before applying an ARMA-GARCH
model?

Further on it can be said:

ADF and others test the mean equation, but this is not for the
volatility equation, so what test do we have to use for the
autocovariance-stationarity?

My thoughts:

Standard ARMA models assume the unconditional mean and unconditional variance to be constant. For ARMA-GARCH models this is also the case: The unconditional mean and unconditional variance need to be constant, whereas in case of the ARMA-GARCH models the conditional variance does not need to be constant.

It is correct that for the mean equation we may have to think about using a trend-stationary or difference-stationary model. But this is only concerning the mean equation, yes.

Conditional variance can be tested by testing for ARCH effects (Box-Ljung, Lagrange Multiplier).

So for ARMA-GARCH models we still need weak stationarity, since the unconditional mean and unconditional variance need to be constant. So I am not sure, but we have to test for weak stationarity before applying an ARMA-GARCH model? And especially with financial returns, do we also have to test for it? And which test do we use (and which command is implemented in R, so what command can you suggest?)

I know that if the unconditional variance is nonstationary (not finite and then it is also not constant) an integrated GARCH may be appropriate. But just because it is not constant I cannot say I use an integrated GARCH model?

I also know that for ARMA-GARCH processes all the "characteristical" roots lie outside the unit circle. So in case of a ARMA-GARCH(1,1) $\alpha_1+\beta_1<1$ is necessary. But I only see this after estimation? This is not a test for covariance stationarity?

EDIT: It basically pins down to (see the comments):
How can I test the unconditional variance to be constant? I mean in order to apply a GARCH model I have to make sure that I have constant unconditional mean (ADF test and so) and I have to test for constant unconditional variance (how?). I know that I have to further make sure that I have nonconstant conditional variance for GARCH processes, otherwise having a constant conditional variance ARMA is sufficient (test for ARCH effects).

EDIT 2: There is a Wavelet Spectrum test in the locits package, what about this test?

Best Answer

Strict stationarity is the strongest form of stationarity. It means that the joint statistical distribution of any collection of the time series variates never depends on time. So, the mean, variance and any moment of any variate is the same whichever variate you choose. However, for day to day use strict stationarity is too strict. Hence, the following weaker definition is often used instead. Stationarity of order 2 which includes a constant mean, a constant variance and an autocovariance that does not depend on time. (second-order stationary or stationary of order 2). A weaker form of stationarity that is first-order stationary which means that the mean is a constant function of time, time-varying means to obtain one which is first-order stationary.

Using traditional stationarity tests such us PP.test (Phillips-Perron Unit Root Test), kpss test or Augmented Dickey-Fuller Tests are not adequate if you are to perform regression via other methods than ARIMA (due that in Arima the orders are fixed and that no other factors that produce non stationarity are included in the model). For non Arima cases stationarity tests in the frequency domain are more adequate.

Tests in the frequency domain : The Priestley-Subba Rao (PSR) test for nonstationarity (fractal package). Based upon examining how homogeneous a set of spectral density function (SDF) estimates are across time, across frequency, or both.

The test you refer to is a test also in the frequency domain (which tests a second order unit root test) where the wavelet looks at a quantity called βj(t) which is closely related to a wavelet-based time-varying spectrum of the time series (it is a linear transform of the evolutionary wavelet spectrum of the locally stationary wavelet processes of Nason, von Sachs and Kroisandt, 2000). So we see if βj(t) function varies over time or is constant by looking at Haar wavelet coefficients of the estimate so is stationary if all haar coefficients are zero (locits package).

There are other concerns about stationarity such us long range dependence, fractional integrated processes (ARFIMA) where the term d (differenciation) refers to long term memory processes.

The effect of higher order non stationarity, long term dependencies is that they are in effect reflected systematically in the errors of a regression, however its impact and thus validity of the regression is difficult to measure

Related Question