Module net.finmath.lib
Class AbstractFourierTransformProduct
java.lang.Object
net.finmath.fouriermethod.products.AbstractFourierTransformProduct
- All Implemented Interfaces:
Function<org.apache.commons.math3.complex.Complex,org.apache.commons.math3.complex.Complex>
,CharacteristicFunction
,FourierTransformProduct
,Product
- Direct Known Subclasses:
DigitalOption
,EuropeanOption
public abstract class AbstractFourierTransformProduct
extends Object
implements CharacteristicFunction, FourierTransformProduct
- Version:
- 1.0
- Author:
- Christian Fries
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract double
Return the lower bound of the imaginary part of the domain where the characteristic function can be integrated.abstract double
Return the upper bound of the imaginary part of the domain where the characteristic function can be integrated.abstract double
Return the maturity of the associated payoff.Return the valuation of the product using the given model.double
getValue(CharacteristicFunctionModel model)
This method returns the value random variable of the product within the specified model, evaluated at a given evalutationTime.Return the valuation of the product using the given model.
-
Constructor Details
-
AbstractFourierTransformProduct
public AbstractFourierTransformProduct()
-
-
Method Details
-
getValue
Description copied from interface:Product
Return the valuation of the product using the given model. Implement this method using a checked cast of the model to a derived model for which the product provides a valuation algorithm. Example: an interest rate product requires that the passed model object implements the interface of an interest rate model. Since there is no polymorphism on arguments (see Double Dynamic Dispatch), we reply on a checked cast.- Specified by:
getValue
in interfaceFourierTransformProduct
- Specified by:
getValue
in interfaceProduct
- Parameters:
evaluationTime
- The evaluation time as double. Cash flows prior and including this time are not considered.model
- The model under which the product is valued.- Returns:
- Object containing the value of the product using the given model.
-
getValues
Description copied from interface:Product
Return the valuation of the product using the given model. Implement this method using a checked cast of the model to a derived model for which the product provides a valuation algorithm. Example: an interest rate product requires that the passed model object implements the interface of an interest rate model. Since there is no polymorphism on arguments (see Double Dynamic Dispatch), we reply on a checked cast.- Specified by:
getValues
in interfaceFourierTransformProduct
- Specified by:
getValues
in interfaceProduct
- Parameters:
evaluationTime
- The evaluation time as double. Cash flows prior and including this time are not considered.model
- The model under which the product is valued.- Returns:
- Map containing the value of the product using the given model.
-
getValue
Description copied from interface:FourierTransformProduct
This method returns the value random variable of the product within the specified model, evaluated at a given evalutationTime. Note: For a lattice this is often the value conditional to evalutationTime, for a Monte-Carlo simulation this is the (sum of) value discounted to evaluation time. Cashflows prior evaluationTime are not considered.- Specified by:
getValue
in interfaceFourierTransformProduct
- Parameters:
model
- The model used to price the product.- Returns:
- The random variable representing the value of the product discounted to evaluation time
- Throws:
CalculationException
- Thrown if the valuation fails, specific cause may be available via thecause()
method.
-
getMaturity
public abstract double getMaturity()Description copied from interface:FourierTransformProduct
Return the maturity of the associated payoff.- Specified by:
getMaturity
in interfaceFourierTransformProduct
- Returns:
- The maturity of the associated payoff.
-
getIntegrationDomainImagLowerBound
public abstract double getIntegrationDomainImagLowerBound()Description copied from interface:FourierTransformProduct
Return the lower bound of the imaginary part of the domain where the characteristic function can be integrated.- Specified by:
getIntegrationDomainImagLowerBound
in interfaceFourierTransformProduct
- Returns:
- the lower bound of the imaginary part of the domain of integration.
-
getIntegrationDomainImagUpperBound
public abstract double getIntegrationDomainImagUpperBound()Description copied from interface:FourierTransformProduct
Return the upper bound of the imaginary part of the domain where the characteristic function can be integrated.- Specified by:
getIntegrationDomainImagUpperBound
in interfaceFourierTransformProduct
- Returns:
- the upper bound of the imaginary part of the domain of integration.
-