Click or drag to resize

UnivariateGARCH Class

Univariate GARCH(p, q) parameter estimation with Gaussian innovations.
Inheritance Hierarchy
SystemObject
  FinMath.TimeSeriesModelsUnivariateGARCH

Namespace:  FinMath.TimeSeriesModels
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class UnivariateGARCH

The UnivariateGARCH type exposes the following members.

Constructors
  NameDescription
Public methodUnivariateGARCH
Creates an instance of class that estimates parameters of univariate GARCH(1, 1) process.
Public methodUnivariateGARCH(Int32, Int32)
Creates an instance of class that estimates parameters of univariate GARCH(p, q) process.
Top
Properties
  NameDescription
Public propertyAlpha
Q-by-1 vector of estimated coefficients, where Q is the number of lags of the squared innovations included in the GARCH process.
Public propertyBeta
P-by-1 vector of estimated coefficients, where P is the number of lags of the conditional variance included in the GARCH process.
Public propertyConditionalVariance
T-by-1 vector of conditional variances (volatility).
Public propertyKappa
The estimated scalar constant term of the GARCH process.
Public propertyLogLikelihood
Log likelihood function value calculated using estimated parameters.
Public propertyTheta
The estimated GARCH parameters.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodEstimate(Vector)
Estimates univariate GARCH(p, q) parameters with Gaussian innovations.
Public methodEstimate(Vector, Vector)
Estimates univariate GARCH(p, q) parameters with Gaussian innovations.
Public methodForecast(Int32)
Returns forecast of conditional variance for next count observations.
Public methodForecast(Vector, Int32)
Returns forecast of conditional variance for next count observations starting with given residuals.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also