NAG FL Interface
g05pef (times_​garch_​asym2)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g05pef generates a given number of terms of a type II AGARCH(p,q) process (see Engle and Ng (1993)).

2 Specification

Fortran Interface
Subroutine g05pef ( dist, num, ip, iq, theta, gamma, df, ht, et, fcall, r, lr, state, ifail)
Integer, Intent (In) :: num, ip, iq, df, lr
Integer, Intent (Inout) :: state(*), ifail
Real (Kind=nag_wp), Intent (In) :: theta(iq+ip+1), gamma
Real (Kind=nag_wp), Intent (Inout) :: r(lr)
Real (Kind=nag_wp), Intent (Out) :: ht(num), et(num)
Logical, Intent (In) :: fcall
Character (1), Intent (In) :: dist
C Header Interface
#include <nag.h>
void  g05pef_ (const char *dist, const Integer *num, const Integer *ip, const Integer *iq, const double theta[], const double *gamma, const Integer *df, double ht[], double et[], const logical *fcall, double r[], const Integer *lr, Integer state[], Integer *ifail, const Charlen length_dist)
The routine may be called by the names g05pef or nagf_rand_times_garch_asym2.

3 Description

A type II AGARCH(p,q) process can be represented by:
ht = α0 + i=1 q αi (|εt-i|+γεt-i) 2 + i=1 p βi ht-i ,   t=1,2,,T ;  
where εt ψ t-1 = N (0,ht) or εt ψt-1= St (df,ht) . Here St is a standardized Student's t-distribution with df degrees of freedom and variance ht, T is the number of observations in the sequence, εt is the observed value of the GARCH(p,q) process at time t, ht is the conditional variance at time t, and ψt the set of all information up to time t. Symmetric GARCH sequences are generated when γ is zero, otherwise asymmetric GARCH sequences are generated with γ specifying the amount by which positive (or negative) shocks are to be enhanced.
One of the initialization routines g05kff (for a repeatable sequence if computed sequentially) or g05kgf (for a non-repeatable sequence) must be called prior to the first call to g05pef.

4 References

Bollerslev T (1986) Generalised autoregressive conditional heteroskedasticity Journal of Econometrics 31 307–327
Engle R (1982) Autoregressive conditional heteroskedasticity with estimates of the variance of United Kingdom inflation Econometrica 50 987–1008
Engle R and Ng V (1993) Measuring and testing the impact of news on volatility Journal of Finance 48 1749–1777
Hamilton J (1994) Time Series Analysis Princeton University Press

5 Arguments

1: dist Character(1) Input
On entry: the type of distribution to use for εt.
dist='N'
A Normal distribution is used.
dist='T'
A Student's t-distribution is used.
Constraint: dist='N' or 'T'.
2: num Integer Input
On entry: T, the number of terms in the sequence.
Constraint: num0.
3: ip Integer Input
On entry: the number of coefficients, βi, for i=1,2,,p.
Constraint: ip0.
4: iq Integer Input
On entry: the number of coefficients, αi, for i=1,2,,q.
Constraint: iq1.
5: theta(iq+ip+1) Real (Kind=nag_wp) array Input
On entry: the first element must contain the coefficient αo, the next iq elements must contain the coefficients αi, for i=1,2,,q. The remaining ip elements must contain the coefficients βj, for j=1,2,,p.
Constraints:
  • i=2 iq+ip+1 theta(i)<1.0;
  • theta(i)0.0, for i=2,3,,ip+iq+1.
6: gamma Real (Kind=nag_wp) Input
On entry: the asymmetry parameter γ for the GARCH(p,q) sequence.
7: df Integer Input
On entry: the number of degrees of freedom for the Student's t-distribution.
If dist='N', df is not referenced.
Constraint: if dist='T', df>2.
8: ht(num) Real (Kind=nag_wp) array Output
On exit: the conditional variances ht, for t=1,2,,T, for the GARCH(p,q) sequence.
9: et(num) Real (Kind=nag_wp) array Output
On exit: the observations εt, for t=1,2,,T, for the GARCH(p,q) sequence.
10: fcall Logical Input
On entry: if fcall=.TRUE., a new sequence is to be generated, otherwise a given sequence is to be continued using the information in r.
11: r(lr) Real (Kind=nag_wp) array Communication Array
On entry: the array contains information required to continue a sequence if fcall=.FALSE..
On exit: contains information that can be used in a subsequent call of g05pef, with fcall=.FALSE..
12: lr Integer Input
On entry: the dimension of the array r as declared in the (sub)program from which g05pef is called.
Constraint: lr2×(ip+iq+2).
13: state(*) Integer array Communication Array
Note: the actual argument supplied must be the array state supplied to the initialization routines g05kff or g05kgf.
On entry: contains information on the selected base generator and its current state.
On exit: contains updated information on the state of the generator.
14: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, dist is not valid: dist=value.
ifail=2
On entry, num=value.
Constraint: num0.
ifail=3
On entry, ip=value.
Constraint: ip0.
ifail=4
On entry, iq=value.
Constraint: iq1.
ifail=5
On entry, theta(value)=value.
Constraint: theta(i)0.0.
ifail=7
On entry, df=value.
Constraint: df3.
ifail=11
ip or iq is not the same as when r was set up in a previous call.
Previous value of ip=value and ip=value.
Previous value of iq=value and iq=value.
ifail=12
On entry, lr is not large enough, lr=value: minimum length required =value.
ifail=13
On entry, state vector has been corrupted or not initialized.
ifail=51
On entry, sum of theta(i), for i=2,3,,ip+iq+1 is 1.0: sum=value.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Not applicable.

8 Parallelism and Performance

g05pef is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

None.

10 Example

This example first calls g05kff to initialize a base generator then calls g05pef to generate two realizations, each consisting of ten observations, from an asymmetric GARCH(1,1) model.

10.1 Program Text

Program Text (g05pefe.f90)

10.2 Program Data

Program Data (g05pefe.d)

10.3 Program Results

Program Results (g05pefe.r)