java.lang.Object
net.finmath.fouriermethod.products.AbstractFourierTransformProduct
net.finmath.fouriermethod.products.EuropeanOption
- All Implemented Interfaces:
Function<org.apache.commons.math3.complex.Complex,org.apache.commons.math3.complex.Complex>
,CharacteristicFunction
,FourierTransformProduct
,Product
- Direct Known Subclasses:
SingleAssetFourierProductFactory.EuropeanOptionFourierMethod
Implements valuation of a European option on a single asset.
Given a model for an asset S, the European option with strike K, maturity T
pays
max(S(T) - K , 0) in T
The class implements the characteristic function of the call option payoff, i.e., its Fourier transform.
max(S(T) - K , 0) in T
The class implements the characteristic function of the call option payoff, i.e., its Fourier transform.
- Version:
- 1.0
- Author:
- Christian Fries, Alessandro Gnoatto
-
Constructor Summary
ConstructorsConstructorDescriptionEuropeanOption(double maturity, double strike)
Construct a product representing an European option on an asset S (where S the asset with index 0 from the model - single asset case).EuropeanOption(String underlyingName, double maturity, double strike)
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.commons.math3.complex.Complex
apply(org.apache.commons.math3.complex.Complex argument)
double
Return the lower bound of the imaginary part of the domain where the characteristic function can be integrated.double
Return the upper bound of the imaginary part of the domain where the characteristic function can be integrated.double
Return the maturity of the associated payoff.Methods inherited from class net.finmath.fouriermethod.products.AbstractFourierTransformProduct
getValue, getValue, getValues
-
Constructor Details
-
EuropeanOption
-
EuropeanOption
public EuropeanOption(double maturity, double strike)Construct a product representing an European option on an asset S (where S the asset with index 0 from the model - single asset case).- Parameters:
maturity
- The maturity T in the option payoff max(S(T)-K,0)strike
- The strike K in the option payoff max(S(T)-K,0).
-
-
Method Details
-
apply
public org.apache.commons.math3.complex.Complex apply(org.apache.commons.math3.complex.Complex argument) -
getMaturity
public double getMaturity()Description copied from interface:FourierTransformProduct
Return the maturity of the associated payoff.- Specified by:
getMaturity
in interfaceFourierTransformProduct
- Specified by:
getMaturity
in classAbstractFourierTransformProduct
- Returns:
- The maturity of the associated payoff.
-
getIntegrationDomainImagLowerBound
public 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
- Specified by:
getIntegrationDomainImagLowerBound
in classAbstractFourierTransformProduct
- Returns:
- the lower bound of the imaginary part of the domain of integration.
-
getIntegrationDomainImagUpperBound
public 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
- Specified by:
getIntegrationDomainImagUpperBound
in classAbstractFourierTransformProduct
- Returns:
- the upper bound of the imaginary part of the domain of integration.
-