Module net.finmath.lib
Class DisplacedLognormalGJRGARCH
java.lang.Object
net.finmath.timeseries.models.parametric.DisplacedLognormalGJRGARCH
- All Implemented Interfaces:
HistoricalSimulationModel
,TimeSeriesModelParametric
public class DisplacedLognormalGJRGARCH
extends Object
implements TimeSeriesModelParametric, HistoricalSimulationModel
Displaced log-normal process with GJR-GARCH(1,1) volatility.
This class estimate the process
\[
\mathrm{d} \log(X + a) = \frac{\sigma}{b + a} \mathrm{d}W(t)
\]
where \( a > -min(X(t_{i}) \) and thus \( X+a > 0 \) and \( b = 1 - -min(X(t_{i}) \) \) and
\( \sigma \) is given by a GJR-GARCH(1,1) process.
The choice of b ensures that b+a ≥ 1.
For a=0 we have a log-normal process with volatility σ/(b + a).
For a=infinity we have a normal process with volatility σ.
- Version:
- 1.0
- Author:
- Christian Fries
-
Constructor Summary
ConstructorsConstructorDescriptionDisplacedLognormalGJRGARCH(TimeSeries timeSeries)
DisplacedLognormalGJRGARCH(TimeSeries timeSeries, double lowerBoundDisplacement)
DisplacedLognormalGJRGARCH(TimeSeries timeSeries, double lowerBoundDisplacement, double upperBoundDisplacement)
-
Method Summary
Modifier and TypeMethodDescriptionReturns the parameters estimated for the given time series.getBestParameters(Map<String,Object> guess)
Returns the parameters estimated for the given time series, using a parameter guess.getCloneCalibrated(TimeSeries timeSeries)
getCloneWithWindow(int windowIndexStart, int windowIndexEnd)
Create a new model, using only a window of the times series.double
getLastResidualForParameters(double[] parameters)
double
getLogLikelihoodForParameters(double[] parameters)
String[]
double[]
double[]
getSzenarios(double[] parameters)
-
Constructor Details
-
DisplacedLognormalGJRGARCH
-
DisplacedLognormalGJRGARCH
-
DisplacedLognormalGJRGARCH
public DisplacedLognormalGJRGARCH(TimeSeries timeSeries, double lowerBoundDisplacement, double upperBoundDisplacement)
-
-
Method Details
-
getLogLikelihoodForParameters
public double getLogLikelihoodForParameters(double[] parameters) -
getLastResidualForParameters
public double getLastResidualForParameters(double[] parameters) -
getSzenarios
public double[] getSzenarios(double[] parameters) -
getBestParameters
Description copied from interface:HistoricalSimulationModel
Returns the parameters estimated for the given time series.- Specified by:
getBestParameters
in interfaceHistoricalSimulationModel
- Returns:
- The parameters estimated for the given time series.
-
getBestParameters
Description copied from interface:HistoricalSimulationModel
Returns the parameters estimated for the given time series, using a parameter guess.- Specified by:
getBestParameters
in interfaceHistoricalSimulationModel
- Parameters:
guess
- A parameter guess.- Returns:
- The parameters estimated for the given time series.
-
getCloneCalibrated
- Specified by:
getCloneCalibrated
in interfaceTimeSeriesModelParametric
-
getCloneWithWindow
Description copied from interface:HistoricalSimulationModel
Create a new model, using only a window of the times series.- Specified by:
getCloneWithWindow
in interfaceHistoricalSimulationModel
- Parameters:
windowIndexStart
- Index of the first element to be part of the new time series.windowIndexEnd
- Index of the last element to be part of the new time series.- Returns:
- A new historical simulation using a different data window.
-
getParameters
public double[] getParameters()- Specified by:
getParameters
in interfaceTimeSeriesModelParametric
-
getParameterNames
- Specified by:
getParameterNames
in interfaceTimeSeriesModelParametric
-