5

Identification

In this chapter, we consider the problem of selecting an appropriate GARCH or ARMA-GARCH model for given observations X1, …, Xn of a centered stationary process. A large part of the theory of finance rests on the assumption that prices follow a random walk. The price variation process, X = (Xt), should thus constitute a martingale difference sequence, and should coincide with its innovation process, 2208_fmt = (2208_fmtt). The first question addressed in this chapter, in Section 5.1, will be the test of this property, at least a consequence of it: absence of correlation. The problem is far from trivial because standard tests for noncorrelation are actually valid under an independence assumption. Such an assumption is too strong for GARCH processes which are dependent though uncorrelated.

If significant sample autocorrelations are detected in the price variations - in other words, if the random walk assumption cannot be sustained - the practitioner will try to fit an ARMA(P, Q) model to the data before using a GARCH(p, q) model for the residuals. Identification of the orders (P, Q) will be treated in Section 5.2, identification of the orders (p,q) in Section 5.3. Tests of the ARCH effect (and, more generally, Lagrange multiplier tests) will be considered in Section 5.4.

5.1 Autocorrelation Check for White Noise

Consider the GARCH(p, q) model

(5.1) c05e001_fmt

with (ηt) a sequence of iid centered variables with unit variance, ω > 0, αi ≥ 0 (i = 1, …, q), βj ≥ 0 (j = 1, …, p). We saw in Section 2.2 that, whatever the orders p and q, the nonanticipative second-order stationary solution of (5.1) is a white noise, that is, a centered process whose theoretical autocorrelations ρ(h) = E2208_fmtt2208_fmtt + h/E2208-2t_fmt satisfy ρ(h) = 0 for all h ≠ 0.

Given observations 2208_fmt1, …, …n, the theoretical autocorrelations of a centered process (2208_fmtt) are generally estimated by the sample autocorrelations (SACRs)

(5.2) c05e002_fmt

for h = 0, 1, …, n − 1. According to Theorem 1.1, if (2208_fmtt) is an iid sequence of centered random variables with finite variance then

c05ue001_fmt

for all h ≠ 0. For a strong white noise, the SACRs thus lie between the confidence bounds ±1.96/root-n_fmt with a probability of approximately 95% when n is large. In standard software, these bounds at the 5% level are generally displayed with dotted lines, as in Figure 5.2. These significance bands are not valid for a weak white noise, in particular for a GARCH process (Exercises 5.3 and 5.4). Valid asymptotic bands are derived in the next section.

5.1.1 Behavior of the Sample Autocorrelations of a GARCH Process

Let carret-p_fmtm = (carret-p_fmt(1),...,carret-p_fmt(m))′ denote the vector of the first m SACRs, based on n observations of the GARCH(p, q) process defined by (5.1). Let carret-y_fmtm = (carret-y_fmt(1),...,carret-y_fmt(m))′ denote a vector of sample autocovariances (SACVs).

Theorem 5.1 (Asymptotic distributions of the SACYs and SACRs) If (2208_fmtt) is the nonanticipative and stationary solution of the GARCH(p, q) model (5.1) and if E2208-4t_fmt < ∞, then, when n → ∞,

c05ue002_fmt

where

c05ue003_fmt

is nonsingular. If the law of ηt is symmetric then 03A3_fmtcarret-y_fmtm is diagonal.

Note that 03A3_fmtcarret-p_fmtm when (2208_fmtt) is a strong white noise, in accordance with Theorem 1.1.

Proof. Let Y-carret_fmtm = (Y-carret_fmt(1),...,Y-carret_fmt(m))′, where c05-ie94001_fmt. Since, for m fixed,

c05ue004_fmt

as n → ∞, the asymptotic distribution of root-n_fmtcarret-y_fmtm coincides with that of root-n_fmtY-carret_fmtm. Let h and k belong to {1, …, m}. By stationarity,

c05ue005_fmt

because

c05ue006_fmt

From this, we deduce the expression for 03A3_fmtcarret-y_fmtm. From the Cramér-Wold theorem,1 the asymptotic normality of root-n_fmtY-carret_fmtm will follow from showing that for all nonzero λ = (λ1, …, λm)′ 2208_fmt 211D_fmtm,

(5.3) c05e003_fmt

Let Ft denote the σ-field generated by {2208_fmtu, ut}. We obtain (5.3) by applying a central limit theorem (CLT) to the sequence c05-ie95001_fmt, which is a stationary, ergodic and square integrable martingale difference (see Corollary A.l).

The asymptotic behavior of carret-p_fmtm immediately follows from that of carret-y_fmtm(as in Exercise 5.3).

Reasoning by contradiction, suppose that 03A3_fmtcarret-y_fmtm is singular. Then, because this matrix is the covariance of the vector (2208_fmtt2208_fmtt − 1, …, 2208_fmtt2208_fmtt − m)′, there exists an exact linear combination of the components of (2208_fmtt2208_fmtt − 1, …, 2208_fmtt2208_fmtt − m)′ that is equal to zero. For some i0 ≥ 1, we then have c05-ie95002_fmt, that is, c05-ie95003_fmt. Hence,

c05ue007_fmt

which is absurd. It follows that 03A3_fmtcarret-y_fmtm is nonsingular.

When the law of ηt is symmetric, the diagonal form of 03A3_fmtcarret-y_fmtm is a consequence of property (7.24) in Chapter 7. See Exercises 5.5 and 5.6 for the GARCH(1, 1) case.                                   Box_fmt

A consistent estimator 03A3_fmtcarret-y_fmtm of 03A3_fmtcarret-y_fmtm is obtained by replacing the generic term of 03A3_fmtcarret-y_fmtm by

c05ue008_fmt

with, by convention, 2208_fmts=0 for s < 1. Clearly, c05_95a_fmt is a consistent estimator of 03A3_fmtcarret-p_fmtm and is almost surely invertible for n large enough. This can be used to construct asymptotic significance bands for the SACRs of a GARCH process.

Practical Implementation

The following R code allows us to draw a given number of autocorrelations carret-p_fmt(i); and the significance bands c05-ie96001_fmt .

# autocorrelation function

gamma<-function(x, h){ n<-length(x); h<-abs(h);x<-x-mean(x)

+ gamma<-sum(x[1:(n-h)]*x[(h+1):n])/n }

rho<-function(x,h) rho<-gamma(x,h)/gamma(x,0)

# acf function with significance bands of a strong white noise

nl.acf<-function(x,main=NULL,method=‘NP’){

+ n<-length(x); nlag<-as.integer(min(10*logl0(n),n−l)) +

acf.val<-sapply(c(1:nlag),function(h) rho(x,h)) + x2<-x^2 +

var<-l+(sapply(c(1:nlag),function(h) gamma(x2,h)))/gamma(x,0)^2 +

band<-sqrt(var/n) +

minval<-l.2*min(acf.val, −1.96*band,−1.96/sqrt(n)) +

maxval<-l.2*max(acf.val,1.96*band,1.96/sqrt(n)) +

acf(x,xlab=‘Lag’,ylab=‘SACR’, ylim^c(minval,maxval)/main=main) +

lines(c(1:nlag),−1.96*band,lty=l,col=‘red’) +

lines(c(l:nlag),1.96*band,lty=l,col=‘red’)}

In Figure 5.1 we have plotted the SACRs and their significance bands for daily series of exchange rates of the dollar, pound, yen and Swiss franc against the euro, for the period from January 4, 1999 to January 22, 2009. It can be seen that the SACRs are often outside the standard significance bands ±1.96/root-n_fmt, which leads us to reject the strong white noise assumption for all these series. On the other hand, most of the SACRs are inside the significance bands shown as solid lines, which is in accordance with the hypothesis that the series are realizations of semi-strong white noises.

Figure 5.1 SACR of exchange rates against the euro, standard significance bands for the SACRs of a strong white noise (dotted lines) and significance bands for the SACRs of a semi-strong white noise (solid lines).

c05f001_fmt

5.1.2 Portmanteau Tests

The standard portmanteau test for checking that the data is a realization of a strong white noise is that of Ljung and Box (1978). It involves computing the statistic

c05ue009_fmt

and rejecting the strong white noise hypothesis if c05-ie97001_fmt is greater than the (1 − α)-quantile of a X-2m_fmt2

Portmanteau tests are constructed for checking noncorrelation, but the asymptotic distribution of the statistics is no longer X-2m_fmt when the series departs from the strong white noise assumption. For instance, these tests are not robust to conditional heteroscedasticity. In the GARCH framework, we may wish to simultaneously test the nullity of the first m autocorrelations using more robust portmanteau statistics.

Theorem 5,2 (Corrected portmanteau test in the presence of ARCH) Under the assumptions of Theorem 5.1, the portmanteau statistic

c05ue010_fmt

has an asymptotic X-2m_fmt distribution.

Proof. Ii suffices to use Theorem 5.1 and the following result: if c05-ie97001_fmt, with Σ nonsingular, and if in probability, then c05-ie97004_fmt.                      Box_fmt

A portmanteau test of asymptotic level α based on the first m SACRs involves rejecting the hypothesis that the data are generated by a GARCH process if Qm is greater than the (1 − α)-quantile of a X-2m_fmt.

5.1.3 Sample Partial Autocorrelations of a GARCH

Denote by rm(carret-r_fmtm) the vector of the m first partial autocorrelations (sample partial autocorrelations (SPACs)) of the process (2208_fmtt). By Theorem B.3, we know that for a weak white noise, the SACRs and SPACs have the same asymptotic distribution. This applies in particular to a GARCH process. Consequently, under the hypothesis of GARCH white noise with a finite fourth-order moment, consistent estimators of 03A3_fmtcarret-r_fmtm are

c05ue011_fmt

where carret-J_fmtm is the matrix obtained by replacing ρx(1), …, ρx(m) by , …, in the Jacobian matrix Jm of the mapping , and is the consistent estimator of 03A3_fmtcarret-r_fmtm defined after Theorem 5.1.

Although it is not current practice, one can test the simultaneous nullity of several theoretical partial autocorrelations using portmanteau tests based on the statistics

c05ue012_fmt

Figure 5.2 SACRs of a simulation of a strong white noise (left) and of the GARCH(1, 1) white noise (5.4) (right). Approximately 95% of the SACRs of a strong white noise should lie inside the thin dotted lines ±1.96/root-n_fmt. Approximately 95% of the SACRs of a GARCH(1, 1) white noise should lie inside the thick dotted lines.

c05f002_fmt

with, for instance, i = 2. From Theorem B.3, under the strong white noise assumption, the statistics c05-ie98001_fmt and c05-ie98002_fmt have the same X-2m_fmt asymptotic distribution. Under the hypothesis of a pure GARCH process, the statistics c05-ie98003_fmt and Qm also have the same X-2m_fmt asymptotic distribution.

5.1.4 Numerical Illustrations

Standard Significance Bounds for the SACRs are not Valid

The right-hand graph of Figure 5.2 displays the sample correlogram of a simulation of size n = 5000 of the GARCH(1, 1) white noise

(5.4) c05e004_fmt

where (ηt) is a sequence of iid N (0, 1) variables. It is seen that the SACRs of order 2 and 4 are sharply outside the 95% significance bands computed under the strong white noise assumption. An inexperienced practitioner could be tempted to reject the hypothesis of white noise, in favor of a more complicated ARMA model whose residual autocorrelations would lie between the significance bounds ±1.96/root-n_fmt. To avoid this type of specification error, one has to be conscious that the bounds ±1.96/root-n_fmt are not valid for the SACRs of a GARCH white noise. In our simulation, it is possible to compute exact asymptotic bounds at the 95% level (Exercise 5.4). In the right-hand graph of Figure 5.2, these bounds are drawn in thick dotted lines. All the SACRs are now inside, or very slightly outside, those bounds. If we had been given the data, with no prior information, this graph would have given us no grounds on which to reject the simple hypothesis that the data is a realization of a GARCH white noise.

Estimating the Significance Bounds of the SACRs of a GARCH

Of course, in real situations the significance bounds depend on unknown parameters, and thus cannot be easily obtained. It is, however, possible to estimate them in a consistent way, as described in Section 5.1.1. For a simulation of model (5.4) of size n = 5000, Figure 5.3 shows as thin dotted lines the estimation thus obtained of the significance bounds at the 5% level. The estimated bounds are fairly close to the exact asymptotic bounds.

The SPACs and Their Significance Bounds

Figure 5.4 shows the SPACs of the simulation (5.4) and the estimated significance bounds of the carret-r_fmt(h), at the 5% level (based on c05-ie98004_fmt). By comparing Figures 5.3 and 5.4, it can be seen that the

Figure 5.3 Sample autocorrelations of a simulation of size n = 5000 of the GARCH(1, 1) white noise (5.4). Approximately 95% of the SACRs of a GARCH(1, 1) white noise should lie inside the thin dotted lines. The exact asymptotic bounds are shown as thick dotted lines.

c05f003_fmt

Figure 5.4 Sample partial autocorrelations of a simulation of size n = 5000 of the GARCH(1, 1) white noise (5.4). Approximately 95% of the SPACs of a GARCH(1, 1) white noise should lie inside the thin dotted lines. The exact asymptotic bounds are shown as thick dotted lines.

c05f004_fmt

SACRs and SPACs of the GARCH simulation look much alike. This is not surprising in view of Theorem B.4.

Portmanteau Tests of Strong White Noise and of Pure GARCH

Table 5.1 displays p-values of white noise tests based on Qm and the usual Ljung-Box statistics, for the simulation of (5.4). Apart from the test with m = 4, the Qm tests do not reject, at the 5% level, the hypothesis that the data comes from a GARCH process. On the other hand, the Ljung-Box tests clearly reject the strong white noise assumption.

Portmanteau Tests Based on Partial Autocorrelations

Table 5.2 Is similar to Table 5.1, but presents portmanteau tests based on the SPACs. As expected, the results are very close to those obtained for the SACRs.

An Example Showing that Portmanteau Tests Based on the SPACs Can Be More Powerful than those Based on the SACRs

Consider a simulation of size n = 100 of the strong MA(2) model

(5.5) c05e005_fmt

Table 5.1 Portmanteau tests on a simulation of size n = 5000 of the GARCH(1, 1) white noise (5.4).

c05t001_fmt

By comparing the top two and bottom two parts of Table 5.3, we note that the hypotheses of strong white noise and pure GARCH are better rejected when the SPACs, rather than the SACRs, are used. This follows from the fact that, for this MA(2), only two theoretical autocorrelations are not equal to 0, whereas many theoretical partial autocorrelations are far from 0. For the same reason, the results would have been inverted if, for instance, an AR(1) alternative had been considered.

5.2 Identifying the ARMA Orders of an ARMA-GARCH

Assume that the tools developed in Section 5.1 lead to rejection of the hypothesis that the data is a realization of a pure GARCH process. It is then sensible to look for an ARMA(P, Q) model with GARCH innovations. The problem is then to choose (or identify) plausible orders for the model

(5.6) c05e006_fmt

under standard assumptions (the AR and MA polynomials having no common root and having roots outside the unit disk, with c05_100a_fmt), where (2208_fmtt) is a GARCH white noise of the form (5.1).

Table 5.2 As Table 5.1, for tests based on partial autocorrelations instead of autocorrelations.

c05t002_fmt

5.2.1 Sample Autocorrelations of an ARMA-GARCH

Recall that an MA(Q) satisfies ρx(h) = 0 for all h > Q, whereas an AR(P) satisfies rx(h) = 0 for all h > P. The SACRs and SPACs thus play an important role in identifying the orders P and Q.

Invalidity of the Standard Bartlett Formula and Modified Formula

The validity of the usual Bartlett formula rests on assumptions including the strong white noise hypothesis (Theorem 1.1) which are obviously incompatible with GARCH errors. We shall see that this formula leads to underestimation of the variances of the SACRs and SPACs, and thus to erroneous ARMA orders. We shall only consider the SACRs because Theorem B.2 shows that the asymptotic behavior of the SPACs easily follows from that of the SACRs.

We assume throughout that the law of ηt is symmetric. By Theorem B.5, the asymptotic behavior of the SACRs is determined by the generalized Bartlett formula (B.15). This formula involves the theoretical autocorrelations of (Xt) and (2208-2t_fmt), as well as the ratio c05-ie101001_fmt. More precisely, using Remark 1 of Theorem 7.2.2 in Brockwell and Davis (1991), the generalized Bartlett formula is written as

c05ue013_fmt

Table 5.3 White noise portmanteau tests on a simulation of size n = 100 of the MA (2) model (5.5).

c05t003_fmt

where

(5.7) c05e007_fmt

and

c05ue014_fmt

The following result shows that the standard Bartlett formula always underestimates the asymptotic variances of the sample autocorrelations in presence of GARCH errors.

Proposition 5.1 Under the assumptions of Theorem B.5, if the linear innovation process (2208_fmtt) is a GARCH process with ηt symmetrically distributed, then

c05ue015_fmt

If moreover, α1 > 0, Var(small-eta-2t_fmt)> 0 and c05-ie102001_fmt, then

c05ue016_fmt

Proof. From Proposition 2.2, we have c05_102a_fmt for all 2113_fmt, with strict inequality when α1 > 0. It thus follows immediately from (5.7) that c05-ie102002_fmt. When α1 > 0 this inequality is strict unless if κ2208_fmt = 1 or wi(2113_fmt) = 0 for all 2113_fmt ≥ 1, that is,

c05ue017_fmt

Suppose this relations holds and note that it is also satisfied for all 2113_fmt 2208_fmt 2124_fmt. Moreover, summing over 2113_fmt, we obtain

c05ue018_fmt

Because the sum of all autocorrelations is supposed to be nonzero, we thus have ρx(i) = 1. Taking 2113_fmt = i in the previous relation, we thus find that ρx(2i) = 1. Iterating this argument yields ρx(ni) = 1, and letting n go to infinity gives a contradiction. Finally, one cannot have κ2208_fmt = 1 because

c05ue019_fmt        Box_fmt

Consider, by way of illustration, the ARMA(2,1)-GARCH(1, 1) process defined by

(5.8) c05e008_fmt

Figure 5.5 shows the theoretical autocorrelations and partial autocorrelations for this model. The bands shown as solid lines should contain approximately 95% of the SACRs and SPACs, for a realization of size n = 1000 of this model. These bands are obtained from formula (B.15), the autocorrelations of (2208-2t_fmt) being computed as in Section 2.5.3. The bands shown as dotted lines correspond to the standard Bartlett formula (still at the 95% level). It can be seen that using this formula, which is erroneous in the presence of GARCH, would lead to identification errors because it systematically underestimates the variability of the sample autocorrelations (Proposition 5.1).

Algorithm for Estimating the Generalized Bands

In practice, the autocorrelations of (Xt) and (2208-2t_fmt), as well as the other theoretical quantities involved in the generalized Bartlett formula (B.15), are obviously unknown. We propose the following algorithm for estimating such quantities:

1. Fit an AR(p0) model to the data X1, …, Xn using an information criterion for the selection of the order p0.

2. Compute the autocorrelations ρ1(h), h = 1, 2, –, of this AR(p0) model.

3. Compute the residuals ep0 + 1, …, en of this estimated AR(p0).

4. Fit an AR(p1) model to the squared residuals c05-ie103001_fmt, again using an information criterion for p1.

Figure 5.5 Autocorrelations (left) and partial autocorrelations (right) for model (5.8). Approximately 95% of the SACRs (SPACs) of a realization of size n = 1000 should lie between the bands shown as solid lines. The bands shown as dotted lines correspond to the standard Bartlett formula.

c05f005_fmt

5. Compute the autocorrelations ρ2(h), h = 1, 2, …, of this AR(p1) model.

6. Estimate limn → ∞ nCovc05_104a_fmt by c##-ie104001_fmt, where

c05ue020_fmt
c05ue021_fmt

and 2113_fmtmax is a truncation parameter, numerically determined so as to have |ρ1(2113_fmt)| and |ρ2(2113_fmt)| less than a certain tolerance (for instance, 10−5) for all 2113_fmt > 2113_fmtmax.

This algorithm is fast when the Durbin-Levinson algorithm is used to fit the AR models. Figure 5.6 shows an application of this algorithm (using the BIC information criterion).

5.2.2 Sample Autocorrelations of an ARMA-GARCH Process When the Noise is Not Symmetrically Distributed

The generalized Bartlett formula (B.15) holds under condition (B.13), which may not be satisfied if the distribution of the noise ηt, in the GARCH equation, is not symmetric. We shall consider the asymptotic behavior of the SACVs and SACRs for very general linear processes whose innovation (2208_fmtt) is a weak white noise. Retaining the notation of Theorem B.5, the following property allows the asymptotic variance of the SACRs to be interpreted as the spectral density at 0 of a vector process (see, for instance, Brockwell and Davis, 1991, for the concept of spectral density). Let c05_104b_fmt

Theorem 5.3 Let (Xt)t2208_fmt2124_fmt be a real stationary process satisfying

Figure 5.6 SACRs (left) and SPACs (right) of a simulation of size n = 1000 of model (5.8). The dotted lines are the estimated 95% confidence bands.

c05f006_fmt

where (2208_fmtt)t2208_fmt2124_fmt is a weak white noise such that E2208-4t_fmt <∞. Let Yt = Xt (Xt, Xt + 1, …, Xt + m)′, c05_105a_fmt_fmt and c05-ie105001_fmt

c05ue022_fmt

the spectral density of the process c05_105b_fmt. Then we have

(5.9) c05e009_fmt

Proof. By stationarity and application of the Lebesgue dominated convergence theorem,

c05ue023_fmt

as n → ∞                                Box_fmt

The matrix c05_105c_fmt involved in (5.9) is called the long-run variance in the econometric literature, as a reminder that it is the limiting variance of a sample mean. Several methods can be considered for long-run variance estimation.

(i) The naive estimator based on replacing the 0413_fmtY(h) by the c05_105d_fmt in fY*(0) is inconsistent (Exercise 1.2). However, a consistent estimator can be obtained by weighting the c05_105d_fmt, using a weight close to 1 when h is very small compared to n, and a weight close to 0 when h is large. Such an estimator is called heteroscedastic and autocorrelation consistent (HAC) in the econometric literature.

(ii) A consistent estimator of fY*(0) can also be obtained using the smoothed periodogram (see Brockwell and Davis, 1991, Section 10.4).

(iii) For a vector AR(r),

c05ue024_fmt

the spectral density at 0 is

c05ue025_fmt

A vector AR model is easily fitted, even a high-order AR, using a multivariate version of the Durbin-Levinson algorithm (see Brockwell and Davis, 1991, p. 422). The following method can thus be proposed:

1. Fit AR(r) models, with r = 0, 1 …, R, to the data c05_105e_fmt where c05-ie105001_fmt

2. Select a value r0 by minimizing an information criterion, for instance the BIC.

3. Take

c05ue026_fmt

with obvious notation.

In our applications we used method (iii).

5.2.3 Identifying the Orders (P, Q)

Order determination based on the sample autocorrelations and partial autocorrelations in the mixed ARMA(P, Q) model is not an easy task. Other methods, such as the corner method, presented in the next section, and the epsilon algorithm, rely on more convenient statistics.

The Corner Method

Denote by D(i, j) the j × j Toeplitz matrix

c05ue027_fmt

and let Δ(i, j) denote its determinant. Since c05-ie106001_fmt, for all h > Q, it is clear that D(i, j) is not a full-rank matrix if i > Q and j > P. More precisely, P and Q are minimal orders (that is, (Xt) does not admit an ARMA(P′, Q′) representation with P′ < P or Q′ < Q) if and only if

(5.10) c05e010_fmt

The minimal orders P and Q are thus characterized by the following table:

c05ut001_fmt

where Δ(j, i) is at the intersection of row i and column j, and × denotes a nonzero element.

The orders P and Q are thus characterized by a corner of zeros in table (T1), hence the term ‘corner method’. The entries in this table are easily obtained using the recursion on j given by

(5.11) c05e011_fmt

and letting Δ(i, 0) = 1, Δ(i, 1) = ρx(|i|).

Denote by c05_107a_fmt, … the items obtained by replacing {ρx(h)} by c05_107b_fmt in D(i, j), Δ(i, j), (T1), …. Only a finite number of SACRs c05_107c_fmt are available in practice, which allows c05_107d_fmt to be computed for i ≥ 1, j ≥ 1 and i + jK + 1. Table carret-T1_fmt is thus triangular. Because the c05_107d_fmt consistently estimate the Δ(j, i), the orders P and Q are characterized by a corner of small values in table carret-T1_fmt. However, the notion of ‘small value’ in (carret-T1_fmt) is not precise enough.3

It is preferable to consider the studentized statistics defined, for i = − K, …, K and j = 0, …, K − |i| + l, by

(5.12) c05e012_fmt

where 03A3-carret_fmtcarret-p_fmtK is a consistent estimator of the asymptotic covariance matrix of the first K SACRs, which can be obtained by the algorithm of Section 5.2.1 or by that of Section 5.2.2, and where the Jacobian c05-ie107001_fmt is obtained from the differentiation of (5.11):

c05ue028_fmt
c05ue029_fmt

for k = 1, …, K, i = −K + j, …, Kj and j = l, …,K.

When Δ(i, j) = 0 the statistic t(i, j) asymptotically follows a N(0, 1) (provided, in particular, that EX-4t_fmt exists). If, in contrast, Δ(i, j) ≠ 0 then c05_107f_fmt a.s. when n → ∞. We can reject the hypothesis Δ(i, j) = 0 at level α if |t(i, j)| is beyond the (1 − α/2)-quantile of a N(0, 1). We can also automatically detect a corner of small values in the table, (Tl) say, giving the t(i, j), if no entry in this corner is greater than this (1 − α/2)-quantile in absolute value. This practice does not correspond to any formal test at level α, but allows a small number of plausible values to be selected for the orders P and Q.

Illustration of the Corner Method

For a simulation of size n = 1000 of the ARMA(2, 1)-GARCH(1, 1) model (5.8) we obtain the following table:

c05ut002a_fmt
c05ut002b_fmt

A corner of values which can be viewed as plausible realizations of the N(0, 1) can be observed. This comer corresponds to the rows 3,4,... and the columns 2, 3, …, leading us to select the ARMA (2, 1) model. The automatic detection routine for corners of small values gives:

c05ut003_fmt

We retrieve the orders (P, Q) = (2, 1) of the simulated model, but also other plausible orders. This is not surprising since the ARMA(2, 1) model can be well approximated by other ARMA models, such as an AR(6), an MA(11) or an ARMA(1, 8) (but in practice, the ARMA(2, 1) should be preferred for parsimony reasons).

5.3 Identifying the GARCH Orders of an ARMA-GARCH Model

The Box-Jenkins methodology described in Chapter 1 for ARMA models can be adapted to GARCH(p, q) models. In this section we consider only the identification problem. First suppose that the observations are drawn from a pure GARCH. The choice of a small number of plausible values for the orders p and q can be achieved in several steps, using various tools:

(i) inspection of the sample autocorrelations and sample partial autocorrelations of c05-ie108001_fmt;

(ii) inspection of statistics that are functions of the sample autocovariances of 2208-2t_fmt (corner method, epsilon algorithm, …);

(iii) use of information criteria (AIC, BIC, …);

(iv) tests of the significance of certain coefficients;

(v) analysis of the residuals.

Steps (iii) and (v), and to a large extent step (iv), require the estimation of models, and are used to validate or modify them. Estimation of GARCH models will be studied in detail in the forthcoming chapters. Step (i) relies on the ARMA representation for the square of a GARCHprocess.In particular, if (2208_fmtt) Is an ARCH(q) process, then the theoretical partial autocorrelation function rc05-ie109001_fmt2 (·) of 2208-2t_fmt satisfies

c05ue030_fmt

For mixed models, the corner method can be used.

5.3.1 Corner Method in the GARCH Case

To Identify the orders of a GARCH(p, q) process, one can use the fact that (2208-2t_fmt) follows an ARMA tilde-P_fmt,tilde-Q_fmt with tilde-P_fmt = max(p, q) and tilde-Q_fmt = p. In the case of a pure GARCH, (2208_fmtt) = (Xt) is observed. The asymptotic variance of the SACRs of c05-ie109002_fmt can be estimated by the method described in Section 5.2.2. The table of studentized statistics for the corner method follows, as described in the previous section. The problem is then to detect at least one comer of normal values starting from the row tilde-P_fmt + 1 and the column tilde-Q_fmt + 1 of the table, under the constraints tilde-P_fmt ≥ 1 (because max(p, q) ≥ q ≥ 1) and tilde-P_fmttilde-Q_fmt. This leads to selection of GARCH (p, q) models such that (p, q) = tilde-P_fmt , tilde-Q_fmt when tilde-Q_fmt < tilde-P_fmt and (p, q) = (tilde-Q_fmt,1), (p, q) = (tilde-Q_fmt,2), …,(p, q) = tilde-Q_fmt , tilde-P_fmt when tilde-Q_fmttilde-P_fmt.

In the ARMA-GARCH case the 2208_fmtt are unobserved but can be approximated by the ARMA residuals. Alternatively, to avoid the ARMA estimation, residuals from fitted ARs, as described in steps 1 and 3 of the algorithm of Section 5.2.1, can be used.

5.3.2 Applications

A Pure GARCH

Consider a simulation of size n = 5000 of the GARCH (2, 1) model

(5.13) c05e013_fmt

where (ηt) is a sequence of iid N (0, 1) variables, ω = 1, α = 0.1, β1 = 0.05 and β2 = 0.8.

The table of studentized statistics for the corner method is as follows:

c05ut004_fmt

A corner of plausible N (0, 1) values Is observed starting from the row tilde-P_fmt + 1 = 3 and the column tilde-Q_fmt + 1 = 3, which corresponds to GARCH(p, q) models such that (max(p, q), p) = (2, 2), that

Is, (p, q) = (2, 1) or (p, q) = (2, 2). A small number of other plausible values are detected for (p, q)

c05ut005_fmt

An ARMA-GARCH

Let us resume the simulation of size n = 1000 of the ARMA(2, 1)-GARCH (1, 1) model (5.8). The table of studentized statistics for the corner method, applied to the SACRs of the observed process, was presented in Section 5.2.3. A small number of ARMA models, Including the ARMA(2, 1), was selected. Let e1 + p0, …, en denote the residuals when an AR(p0) is fitted to the observations, the order p0 being selected using an Information criterion.4 Applying the corner method again, but this time on the SACRs of the squared residuals c05-ie110001_fmt, and estimating the covariances between the SACRs by the multivariate AR spectral approximation, as described in Section 5.2.2, we obtain the following table:

c05ut006_fmt

A corner of values compatible with the N (0, 1) is observed starting from row 2 and column 2, which corresponds to a GARCH(1, 1) model. Another comer can be seen below row 2, which corresponds to a GARCH(0, 2) = ARCH(2) model. In practice, in this identification step, at least these two models would be selected. The next step would be the estimation of the selected models, followed by a validation step involving testing the significance of the coefficients, examining the residuals and comparing the models via information criteria. This validation step allows a final model to be retained which can be used for prediction purposes.

c05ut007_fmt

5.4 Lagrange Multiplier Test for Conditional Homoscedastlclty

To test linear restrictions on the parameters of a model, the most widely used tests are the Wald test, the Lagrange multiplier (LM) test and likelihood ratio (LR) test. The LM test, also referred to as the Rao test or the score test, is attractive because it only requires estimation of the restricted model (unlike the Wald and LR tests which will be studied in Chapter 8), which is often much easier than estimating the unrestricted model. We start by deriving the general form of the LM test. Then we present an LM test for conditional homoscedasticity in Section 5.4.2.

5.4.1 General Form of the LM Test

Consider a parametric model, with true parameter value θ0 2208_fmt 211D_fmtd, and a null hypothesis

c05ue031_fmt

where R is a given s × d matrix of full rank s, and r is a given s × 1 vector. This formulation allows one to test, for instance, whether the first s components of θ0 are null (it suffices to set R = [ls : 0S × (d − s)] and r = 0s). Let 2113_fmtn(θ) denote the log-likelihood of observations X1, …, Xn. We assume the existence of unconstrained and constrained (by H0) maximum likelihood estimators, respectively satisfying

c05ue032_fmt

Under some regularity assumptions (which will be discussed in detail in Chapter 7 for the GARCH(p, q) model) the score vector satisfies a central limit theorem and we have

(5.14) c05e014_fmt

where F109a_fmt is the Fisher information matrix. To derive the constrained estimator we introduce the Lagrangian

c05ue033_fmt

We have

c05ue034_fmt

The first-order conditions give

c05ue035_fmt

The second convergence in (5.14) thus shows that under H0,

(5.15) c05e015_fmt

Using the convention c05-ie112001_fmt for a = b + c, asymptotic expansions entail, under usual regularity conditions (more rigorous statements will be given in Chapter 7),

c05ue036_fmt

which, by subtraction, gives

(5.16) c05e016_fmt

Finally, (5.15) and (5.16) imply

c05ue037_fmt

and then

c05ue038_fmt

Thus, under H0, the test statistic

(5.17) c05e017_fmt

asymptotically follows a X-2s_fmt, provided that F109-carret_fmt is an estimator converging in probability to F109a_fmt. In general one can take

c05ue039_fmt

The critical region of the LM test at the asymptotic level α is {LMn > X-2s_fmt (l − α)}.

The Case where the LMn Statistic Takes the Form nR2

Implementation of an LM test can sometimes be extremely simple. Consider a nonlinear conditionally homoscedastic model in which a dependent variable Yt is related to its past values and to a vector of exogenous variables Xt by Yt = Fθ0(Wt) + 2208_fmtt, where 2208_fmtt is iid c05-ie112002_fmt and Wt = (Xt, Yt − 1, …). Assume, in addition, that Wt and 2208_fmtt are independent. We wish to test the hypothesis

c05ue040_fmt

where

c05ue041_fmt

To retrieve the framework of the previous section, let R = [0s ×(d × s) : Is] and note that

c05ue042_fmt

where Σλ = (F109a_fmt22)−1 and F109a_fmt22 = RF109a_fmt− 1 R′ is the bottom right-hand block of F109a_fmt− 1. Suppose that c05-ie113001_fmt does not depend on ψ0. With a Gaussian likelihood (Exercise 5.9) we have

c05ue043_fmt

where 2208_fmtt(θ) = YtFθ(Wt), c05-ie113002_fmt and

c05ue044_fmt

Partition F109a_fmt into blocks as

c05ue045_fmt

where F109a_fmt11 and F109a_fmt22 are square matrices of respective sizes ds and s. Under the assumption that the information matrix F109a_fmt is block-diagonal (that is, F109a_fmt12 = 0), we have c05-ie113003_fmt where F109a_fmt22 = RF109a_fmtR′, which entails Σλ = F109a_fmt22. We can then choose

c05ue046_fmt

as a consistent estimator of Σλ. We end up with

(5.18) c05e018_fmt

which is nothing other than n times the uncentered determination coefficient in the regression of c05-ie113004_fmt on the variables c05_113c_fmt for i = 1, …, s (Exercise 5.10).

LM Test with Auxiliary Regressions

We extend the previous framework by allowing F109a_fmt12 to be not equal to zero. Assume that σ2 does not depend on θ. In view of Exercise 5.9, we can then estimate Σλ by5

c05ue047_fmt

where

c05ue048_fmt

Suppose the model is linear under the constraint H0, so that

c05ue049_fmt

with

c05ue050_fmt

up to some negligible terms.

Now consider the linear regression

(5.19) c05e019_fmt

Exercise 5.10 shows that, in this auxiliary regression, the LM statistic for testing the hypothesis

c05ue051_fmt

is given by

c05ue052_fmt

This statistic is precisely the LM test statistic for the hypothesis H0 : ψ = 0 in the initial model. From Exercise 5.10, the LM test statistic of the hypothesis H0* : ψ* = 0 in model (5.19) can also be written as

(5.20) c05e020_fmt

where c05_114a_fmt with carret-theta_fmt* = (F′F)−1 F′Y. We finally obtain the so-called Breusch-Godfrey form of the LM statistic by interpreting LMn* in (5.20) as n times the determination coefficient of the auxiliary regression

(5.21) c05e021_fmt

where carret-U_fmtc is the vector of residuals in the regression of Y on the columns of Fβ.

Indeed, in the two regressions (5.19) and (5.21), the vector of residuals is carret-V_fmt = carret-U_fmt, because . Finally, we note that the determination coefficient is centered (in other words, it is R2 as provided by standard statistical software) when a column of Fβ is constant.

Quasi-LM Test

When 2113_fmtn(θ) is no longer supposed to be the log-likelihood, but only the quasi-log-likelihood (a thorough study of the quasi-likelihood for GARCH models will be made in Chapter 7), the equations can in general be replaced by

(5.22) c05e022_fmt

where

c05ue053_fmt

It is then recommended that (5.17) be replaced by the more complex, but more robust, expression

(5.23) c05e023_fmt

where carret-I_fmt and carret-J_fmt are consistent estimators of I and J. A consistent estimator of J is obviously obtained as a sample mean. Estimating the long-run variance I requires more involved methods, such as those described on page 105 (HAC or other methods).

5.4.2 LM Test for Conditional Homoscedasticity

Consider testing the conditional homoscedasticity assumption

c05ue054_fmt

in the ARCH(q) model

c05ue055_fmt

At the parameter value θ = (ω, α1, …, αq) the quasi-log-likelihood is written, neglecting unimportant constants, as

c05ue056_fmt

with the convention 2208_fmtt − = 0 for t ≤ 0. The constrained quasi-maximum likelihood estimator is c05-ie115001h where c05-ie115001i6.

c05ue057_fmt

At θ0 = (ω0, …, 0), the score vector satisfies

c05ue058_fmt

under H0, where ω0 = (ω0, …, ω0)′ 2208_fmt 211D_fmtq and I22 is a matrix whose diagonal elements are c05-ie115001_fmt with kn = Esmall-eta-4t_fmt, and whose other entries are equal to omega-20_fmt. The bottom right-hand block of I− 1 is thus

(5.24) c05e024_fmt

In addition, we have

c05ue059_fmt

From (5.23), using estimators of I and J such that we obtain

c05ue060_fmt

Using (5.24) and noting that

c05ue061_fmt

we obtain

(5.25) c05e025_fmt

Equivalence with a Portmanteau Test

Using

c05ue062_fmt

It follows from (5.25) that

(5.26) c05e026_fmt

which shows that the LM test is equivalent to a portmanteau test on the squares.

Expression in Terms of R2

To establish a connection with the linear model, write

where Y is the n × l vector c05-ie116001_fmt, and X is the n × (q + 1) matrix with first column 1/carret-omega_fmtc and (i + l)th column c05_116a_fmt. Estimating I by (carret-k_fmtη − l)n− 1 X′X, where carret-k_fmtη − 1 = n− 1 Y′Y, we obtain

(5.27) c05e027_fmt

which can be Interpreted as n times the determination coefficient In the linear regression of Y on the columns of X. Because the determination coefficient is invariant by linear transformation of the variables (Exercise 5.11), we simply have LMn = nR2 where R2 is the determination coefficient7 of the regression of 2208-2t_fmt on a constant and q lagged variables c05-ie116002_fmt. Under the null hypothesis of conditional homoscedasticity, LMn asymptotically follows a X-2q_fmt. The version of the LM statistic given in (5.27) differs from the one given in (5.25) because (5.24) is not satisfied when I is replaced by (carret-k_fmtη − 1)n− 1 X′X.

5.5 Application to Real Series

Consider the returns of the CAC 40 stock index from March 2, 1990 to December 29, 2006 (4245 observations) and of the FTSE 100 index of the London Stock Exchange from April 3, 1984 to April 3, 2007 (5812 observations). The correlograms for the returns and squared returns are displayed in Figure 5.7. The bottom correlograms of Figure 5.7, as well as the portmanteau tests of Table 5.4, clearly show that, for the two indices, the strong white noise assumption cannot be sustained. These portmanteau tests can be considered as versions of LM tests for conditional homoscedasticity (see Section 5.4.2). Table 5.5 displays the nR2 version of the LM test of Section 5.4.2. Note that the two versions of the LM statistic are quite different but lead to the same unambiguous conclusions: the hypothesis of no ARCH effect must be rejected, as well as the hypothesis of absence of autocorrelation for the CAC 40 or FTSE 100 returns.

The first correlogram of Figure 5.7 and the first part of Table 5.6 lead us to think that the CAC 40 series is fairly compatible with a weak white noise structure (and hence with a GARCH structure). Recall that the 95% significance bands, shown as dotted lines on the upper correlograms of Figure 5.7, are valid under the strong white noise assumption but may be misleading for weak white noises (such as GARCH). The second part of Table 5.6 displays classical Ljung-Box tests for noncorrelation. It may be noted that the CAC 40 returns series does not pass the classical portmanteau tests.8 This does not mean, however, that the white noise assumption should be

Figure 5.7 Correlograms of returns and squared returns of the CAC 40 index (March 2, 1990 to December 29, 2006) and the FTSE 100 index (April 3, 1984 to April 3, 2007).

c05f007_fmt

Table 5.4 Portmanteau tests on the squared CAC 40 returns (March 2, 1990 to December 29, 2006) and FTSE 100 returns (April 3, 1984 to April 3, 2007).

c05t004_fmt

Table 5.5 LM tests for conditional homoscedasticity of the CAC 40 and FTSE 100.

c05t005_fmt

rejected. Indeed, we know that such classical portmanteau tests are invalid for conditionally heteroscedastic series.

Table 5.7 is the analog of Table 5.6 for the FTSE 100 index. Conclusions are more disputable in this case. Although some p-values of the upper part of Table 5.7 are slightly less than 5%, one cannot exclude the possibility that the FTSE 100 index is a weak (GARCH) white noise.

Table 5.6 Portmanteau tests on the CAC 40 (March 2, 1990 to December 29, 2006).

c05t006_fmt

Table 5.7 Portmanteau tests on the FTSE 100 (April 3, 1984 to April 3, 2007).

c05t007_fmt

Table 5.8 Studentized statistics for the comer method for the CAC 40 series and selected ARMA orders.

c05t008_fmt

On the other hand, the assumption of strong white noise can be categorically rejected, the p-values (bottom of Table 5.7) being almost equal to zero. Table 5.8 confirms the identification of an ARMA(0, 0) process for the CAC 40. Table 5.9 would lead us to select an ARMA(0, 0), ARMA(1, 1), AR(3) or MA(3) model for the FTSE 100. Recall that this a priori identification step should be completed by an estimation of the selected models, followed by a validation step. For the CAC 40, Table 5.10 indicates that the most reasonable GARCH model is simply the GARCH(1, 1). For the FTSE 100, plausible models are the GARCH(2, 1), GARCH(2, 2), GARCH(2, 3), or ARCH(4), as can be seen from Table 5.11. The choice between these models is the object of the estimation and validation steps.

5.6 Bibliographical Notes

In this chapter, we have adapted tools generally employed to deal with the identification of ARMA models. Correlograms and partial correlograms are studied in depth in the book by Brockwell and Davis (1991). In particular, they provide a detailed proof for the Bartlett formula giving the asymptotic behavior of the sample autocorrelations of a strong linear process.

Table 5.9 Studentized statistics for the comer method for the FTSE 100 series and selected ARMA orders.

c05t009_fmt

The generalized Bartlett formula (B.15) was established by Francq and Zakoïan (2009d). The textbook by Li (2004) can serve as a reference for the various portmanteau adequacy tests, as well as Godfrey (1988) for the LM tests. It is now well known that tools generally used for the identification of ARMA models should not be directly used in presence of conditional net-eroscedasticity, or other forms of dependence in the linear innovation process (see, for instance, Diebold, 1986; Romano and Thombs, 1996; Berlinet and Francq, 1997; or Francq, Roy and Zakoïan, 2005). The corner method was proposed by Béguin, Gourieroux and Monfort (1980) for the identification of mixed ARMA models. There are many alternatives to the corner method, in particular the epsilon algorithm (see Berlinet, 1984) and the generalized autocorrelations of Glasbey (1982).

Additional references on tests of ARCH effects are Engle (1982, 1984), Bera and Higgins (1997) and Li (2004).

In this chapter we have assumed the existence of a fourth-order moment for the observed process. When only the second-order moment exists, Basrak, Davis and Mikosch (2002) showed in particular that the sample autocorrelations converge very slowly. When even the second-order moment does not exist, the sample autocorrelations have a degenerate asymptotic distribution.

Table 5.10 Studentized statistics for the corner method for the squared CAC 40 series and selected GARCH orders.

c05t010_fmt

Concerning the HAC estimators of a long-run variance matrix, see, for instance, Andrews (1991) and Andrews and Monahan (1992). The method based on the spectral density at 0 of an AR model follows from Berk (1974). A comparison with the HAC method is proposed in den Hann and Levin (1997).

5.7 Exercises

5.1 (Asymptotic behavior of the SACVs of a martingale difference)

Let (2208_fmtt) denote a martingale difference sequence such that E2208-4t_fmt < ∞ and c05-ie122001_fmt. By applying Corollary A.l, derive the asymptotic distribution of nl / 2 carret-y_fmt (h) for h ≠ 0.

5.2 (Asymptotic behavior of n1/2 carret-y_fmt (1) for an ARCHQ) process)

Consider the stationary nonanticipative solution of an ARCH(1) process

(5.28) c05e028_fmt

Table 5.11 Studentized statistics for the corner method for the squared FTSE 100 series and selected GARCH orders.

c05t011_fmt

where (ηt) is a strong white noise with unit variance and μ4α2 < 1 with. Derive the asymptotic distribution of n1/2carret-y_fmt(l).

5.3 (Asymptotic behavior of n1/2carret-p_fmt(1) for an ARCH(1) process)

For the ARCH(l) model of Exercise 5.2, derive the asymptotic distribution of n1/2carret-p_fmt(l). What is the asymptotic variance of this statistic when α = 0? Draw this asymptotic variance as a function of α and conclude accordingly.

5.4 (Asymptotic behavior of the SACRs of a GARCH (1, 1) process)

For the GARCH(1, 1) model of Exercise 2.8, derive the asymptotic distribution of n1/2carret-p_fmt(h), for h ≠ 0 fixed.

5.5 (Moment of order 4 of a GARCH(1, 1) process)

For the GARCH(1, 1) model of Exercise 2.8, compute E2208_fmtt2208_fmtt + 12208_fmts2208_fmts + 2.

5.6 (Asymptotic covariance between the SACRs of a GARCH (1, 1) process)

For the GARCH(1, 1) model of Exercise 2.8, compute

c05ue063_fmt

5.7 (First five SACRs of a GARCH(l, 1) process)

Evaluate numerically the asymptotic variance of the vector root-n_fmtcarret-p_fmt5 of the first five SACRs of the GARCH(1, 1) model defined by

c05ue064_fmt

5.8 (Generalized Bartlett formula for an MA(q)-ARCH(X) process)

Suppose that Xt follows an MA(q) of the form

c05ue065_fmt

where the error term is an ARCH(l) process

c05ue066_fmt

How is the generalized Bartlett formula (B.15) expressed for i = j > q?

5.9 (Fisher information matrix for dynamic regression model)

In the regression model Yt = Fθ0(Wt) + 2208_fmtt introduced on page 112, suppose that (2208_fmtt) is a 004E_fmt(0,sigma-20_fmt) white noise. Suppose also that the regularity conditions entailing (5.14) hold. Give an explicit form to the blocks of the matrix I, and consider the case where σ2 does not depend on θ.

5.10 (LM tests in a linear regression model)

Consider the regression model

c05ue067_fmt

where Y = (Y1, …, Yn) is the dependent vector variable, Xi is an n × ki matrix of explicative variables with rank ki (i = 1, 2), and the vector U is a N(0, σ2In) error term. Derive the LM test of the hypothesis H0 : β2 = 0. Consider the case X′1X2 = 0 and the general case.

5.11 (Centered and uncentered R2)

Consider the regression model

c05ue068_fmt

where the 2208_fmtt are iid, centered, and have a variance σ2 > 0. Let Y = (Y1, …, Yn)′ be the vector of dependent variables, X = (Xif) the n × k matrix of explanatory variables, 2208_fmt = (2208_fmt1, …, 2208_fmtn)′ the vector of the error terms and β = (β1, …, βk)′ the parameter vector. Let Px = X(X′X)−1 X′ denote the orthogonal projection matrix on the vector subspace generated by the columns of X.

The uncentered determination coefficient is defined by

(5.29) c05e029_fmt

and the (centered) determination coefficient is defined by

(5.30) c05e030_fmt

Let T denote a k × k invertible matrix, c a number different from 0 and d any number.

Let carret-y_fmt = cY + de and carret-X_fmt = XT. Show that if y-bar_fmt = 0 and if e belongs to the vector subspace generated by the columns of X, then c05-ie125001_fmt defined by (5.29) is equal to the determination coefficient in the regression of tilde-X_fmt on the columns of tilde-X_fmt.

5.12 (Identification of the DAX and the S&P 500)

From the address http://fr.biz.yahoo.com//bourse/accueil.html download the series of DAX and S&P 500 stock indices. Carry out a study similar to that of Section 5.5 and deduce a selection of plausible models.

1 For any sequence (Zn) of random vectors of size d, c05-ie95004_fmt if and only if, for all λ 2208_fmt 211D_fmtd, we have c05-ie95005_fmt

2 The asymptotic distribution of c05-ie97005_fmt is X-2m_fmt. The Box and Pierce (1970) statistic c05-ie97006_fmt has the same asymptotic distribution, but the c05-ie97007_fmt statistic is believed to perform better for finite samples.

3Comparing c05_107d_fmt and c05_107d_fmt for jj′ (that is, entries of different rows in table tilde-T1_fmt) is all the more difficult as these are determinants of matrices of different sizes.

4 One can also use the innovations algorithm of Brockwell and Davis (1991, p. 172) for rapid fitting of MA models. Alternatively, one of the previously selected ARMA models, for instance the ARMA(2, 1), can be used to approximate the innovations.

5 For a partitioned invertible matrix c05-ie113005_fmt, where A11 and A22 are invertible square blocks, the bottom right-hand block of A−1 is written as c05-ie113006_fmt(Exercise 6.7).

6 Indeed, the function σ2 Φ x / σ2 + n log σ2 reaches its minimum at σ2 = x / n.

7We mean here the centered determination coefficient (the one usually given by standard software) not the uncentered one as was the case in Section 5.4.1. There is sometimes confusion between these coefficients in the literature.

8 Classical portmanteau tests are those provided by standard commercial software, in particular those of the table entitled ‘Autocorrelation Check for White Noise’ of the arima procedure in sas.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.191.29.151