NAG FL Interface
g05pff (times_​garch_​gjr)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g05pff generates a given number of terms of a GJR GARCH(p,q) process (see Glosten et al. (1993)).

2 Specification

Fortran Interface
Subroutine g05pff ( 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  g05pff_ (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 g05pff or nagf_rand_times_garch_gjr.

3 Description

A GJR GARCH(p,q) process is represented by:
ht = α0 + i=1q (αi+γIt-i) ε t-i 2 + i=1 p βi ht-i ,   t=1,2,,T ;  
where It=1 if εt<0, It=0 if εt0, and ε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 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 g05pff.

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
Glosten L, Jagannathan R and Runkle D (1993) Relationship between the expected value and the volatility of nominal excess return on stocks Journal of Finance 48 1779–1801
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: num>0.
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=1 and i=iq+2,,iq+ip+1.
6: gamma Real (Kind=nag_wp) Input
On entry: the asymmetry parameter γ for the GARCH(p,q) sequence.
Constraint: gamma+theta(i)0.0, for i=2,3,,iq+1.
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 g05pff, with fcall=.FALSE..
12: lr Integer Input
On entry: the dimension of the array r as declared in the (sub)program from which g05pff 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 and γ=value.
Constraint: αi+γ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, theta(value)=value.
Constraint: theta(i)0.0.
ifail=52
On entry, sum of theta(i)=value.
Constraint: sum of theta(i), for i=1,2,,ip+iq is <1.0.
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

Background information to multithreading can be found in the Multithreading documentation.
g05pff 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 g05pff to generate two realizations, each consisting of ten observations, from a GJR GARCH(1,1) model.

10.1 Program Text

Program Text (g05pffe.f90)

10.2 Program Data

Program Data (g05pffe.d)

10.3 Program Results

Program Results (g05pffe.r)