java.lang.Object
net.finmath.modelling.descriptor.MertonModelDescriptor
- All Implemented Interfaces:
AssetModelDescriptor
,ModelDescriptor
public class MertonModelDescriptor extends Object implements AssetModelDescriptor
Descriptor for the Merton Jump Diffusion Model.
This provides communication between the Fourier transform framework for calibration and
the Monte Carlo engine.
- Author:
- Alessandro Gnoatto
-
Constructor Summary
Constructors Constructor Description MertonModelDescriptor(LocalDate referenceDate, Double initialValue, DiscountCurve discountCurveForForwardRate, DiscountCurve discountCurveForDiscountRate, Double volatility, Double jumpIntensity, Double jumpSizeMean, Double jumpSizeStdDev)
-
Method Summary
Modifier and Type Method Description DiscountCurve
getDiscountCurveForDiscountRate()
DiscountCurve
getDiscountCurveForForwardRate()
Double
getInitialValue()
Double
getJumpIntensity()
Double
getJumpSizeMean()
Double
getJumpSizeStdDev()
LocalDate
getReferenceDate()
Double
getVolatility()
String
name()
Return the name of the model represented by this descriptor.Integer
version()
Return the version of the model description.
-
Constructor Details
-
MertonModelDescriptor
public MertonModelDescriptor(LocalDate referenceDate, Double initialValue, DiscountCurve discountCurveForForwardRate, DiscountCurve discountCurveForDiscountRate, Double volatility, Double jumpIntensity, Double jumpSizeMean, Double jumpSizeStdDev)
-
-
Method Details
-
version
Description copied from interface:ModelDescriptor
Return the version of the model description.- Specified by:
version
in interfaceModelDescriptor
- Returns:
- Version number.
-
name
Description copied from interface:ModelDescriptor
Return the name of the model represented by this descriptor.- Specified by:
name
in interfaceModelDescriptor
- Returns:
- Name of the model.
-
getReferenceDate
- Returns:
- the referenceDate
-
getInitialValue
- Returns:
- the initialValue
-
getDiscountCurveForForwardRate
- Returns:
- the discountCurveForForwardRate
-
getDiscountCurveForDiscountRate
- Returns:
- the discountCurveForDiscountRate
-
getVolatility
- Returns:
- the volatility
-
getJumpIntensity
- Returns:
- the jumpIntensity
-
getJumpSizeMean
- Returns:
- the jumpSizeMean
-
getJumpSizeStdDev
- Returns:
- the jumpSizeStdDev
-