java.lang.Object
net.finmath.marketdata.products.AbstractAnalyticProduct
net.finmath.marketdata.products.Swap
- All Implemented Interfaces:
Serializable
,AnalyticProduct
,DescribedProduct<InterestRateSwapProductDescriptor>
,Product
public class Swap
extends AbstractAnalyticProduct
implements AnalyticProduct, DescribedProduct<InterestRateSwapProductDescriptor>, Serializable
Implements the valuation of a swap using curves (discount curve, forward curve).
The swap valuation supports distinct discounting and forward curve.
Support for day counting is limited to the capabilities of
TimeDiscretization
.
The swap is just the composition of two SwapLeg
s, namely the
receiver leg and the payer leg. The value of the swap is the value of the receiver leg minus the value of the payer leg.- Version:
- 1.0
- Author:
- Christian Fries
- See Also:
- Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionSwap(AnalyticProduct legReceiver, AnalyticProduct legPayer)
Create a swap which values aslegReceiver - legPayer
.Swap(Schedule scheduleReceiveLeg, double spreadReceive, String discountCurveReceiveName, Schedule schedulePayLeg, String forwardCurvePayName, String discountCurvePayName)
Creates a swap with notional exchange.Swap(Schedule scheduleReceiveLeg, String forwardCurveReceiveName, double spreadReceive, String discountCurveReceiveName, Schedule schedulePayLeg, String forwardCurvePayName, double spreadPay, String discountCurvePayName)
Creates a swap with notional exchange.Swap(Schedule scheduleReceiveLeg, String forwardCurveReceiveName, double spreadReceive, String discountCurveReceiveName, Schedule schedulePayLeg, String forwardCurvePayName, double spreadPay, String discountCurvePayName, boolean isNotionalExchanged)
Creates a swap with notional exchange. -
Method Summary
Modifier and TypeMethodDescriptionReturn a product descriptor representing this product.static double
getForwardSwapRate(Schedule fixSchedule, Schedule floatSchedule, ForwardCurve forwardCurve)
static double
getForwardSwapRate(Schedule fixSchedule, Schedule floatSchedule, ForwardCurve forwardCurve, AnalyticModel model)
static double
getForwardSwapRate(TimeDiscretization fixTenor, TimeDiscretization floatTenor, ForwardCurve forwardCurve)
static double
getForwardSwapRate(TimeDiscretization fixTenor, TimeDiscretization floatTenor, ForwardCurve forwardCurve, DiscountCurve discountCurve)
Return the payer leg of the swap, i.e.Return the receiver leg of the swap, i.e.double
getValue(double evaluationTime, AnalyticModel model)
Return the valuation of the product using the given model.toString()
Methods inherited from class net.finmath.marketdata.products.AbstractAnalyticProduct
getValue, getValue
-
Constructor Details
-
Swap
Create a swap which values aslegReceiver - legPayer
.- Parameters:
legReceiver
- The receiver leg.legPayer
- The payer leg.
-
Swap
public Swap(Schedule scheduleReceiveLeg, String forwardCurveReceiveName, double spreadReceive, String discountCurveReceiveName, Schedule schedulePayLeg, String forwardCurvePayName, double spreadPay, String discountCurvePayName, boolean isNotionalExchanged)Creates a swap with notional exchange. The swap has a unit notional of 1.- Parameters:
scheduleReceiveLeg
- ScheduleFromPeriods of the receiver leg.forwardCurveReceiveName
- Name of the forward curve, leave empty if this is a fix leg.spreadReceive
- Fixed spread on the forward or fix rate.discountCurveReceiveName
- Name of the discount curve for the receiver leg.schedulePayLeg
- ScheduleFromPeriods of the payer leg.forwardCurvePayName
- Name of the forward curve, leave empty if this is a fix leg.spreadPay
- Fixed spread on the forward or fix rate.discountCurvePayName
- Name of the discount curve for the payer leg.isNotionalExchanged
- If true, both leg will pay notional at the beginning of each swap period and receive notional at the end of the swap period. Note that the cash flow date for the notional is periodStart and periodEnd (not fixingDate and paymentDate).
-
Swap
public Swap(Schedule scheduleReceiveLeg, String forwardCurveReceiveName, double spreadReceive, String discountCurveReceiveName, Schedule schedulePayLeg, String forwardCurvePayName, double spreadPay, String discountCurvePayName)Creates a swap with notional exchange. The swap has a unit notional of 1.- Parameters:
scheduleReceiveLeg
- ScheduleFromPeriods of the receiver leg.forwardCurveReceiveName
- Name of the forward curve, leave empty if this is a fix leg.spreadReceive
- Fixed spread on the forward or fix rate.discountCurveReceiveName
- Name of the discount curve for the receiver leg.schedulePayLeg
- ScheduleFromPeriods of the payer leg.forwardCurvePayName
- Name of the forward curve, leave empty if this is a fix leg.spreadPay
- Fixed spread on the forward or fix rate.discountCurvePayName
- Name of the discount curve for the payer leg.
-
Swap
public Swap(Schedule scheduleReceiveLeg, double spreadReceive, String discountCurveReceiveName, Schedule schedulePayLeg, String forwardCurvePayName, String discountCurvePayName)Creates a swap with notional exchange. The swap has a unit notional of 1.- Parameters:
scheduleReceiveLeg
- ScheduleFromPeriods of the receiver leg.spreadReceive
- Fixed spread on the forward or fix rate.discountCurveReceiveName
- Name of the discount curve for the receiver leg.schedulePayLeg
- ScheduleFromPeriods of the payer leg.forwardCurvePayName
- Name of the forward curve, leave empty if this is a fix leg.discountCurvePayName
- Name of the discount curve for the payer leg.
-
-
Method Details
-
getValue
Description copied from interface:AnalyticProduct
Return the valuation of the product using the given model. The model has to implement the modes ofAnalyticModel
.- Specified by:
getValue
in interfaceAnalyticProduct
- 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:
- The value of the product using the given model.
-
getForwardSwapRate
public static double getForwardSwapRate(TimeDiscretization fixTenor, TimeDiscretization floatTenor, ForwardCurve forwardCurve) -
getForwardSwapRate
public static double getForwardSwapRate(TimeDiscretization fixTenor, TimeDiscretization floatTenor, ForwardCurve forwardCurve, DiscountCurve discountCurve) -
getForwardSwapRate
public static double getForwardSwapRate(Schedule fixSchedule, Schedule floatSchedule, ForwardCurve forwardCurve) -
getForwardSwapRate
public static double getForwardSwapRate(Schedule fixSchedule, Schedule floatSchedule, ForwardCurve forwardCurve, AnalyticModel model) -
getLegReceiver
Return the receiver leg of the swap, i.e. the leg who's value is added to the swap value.- Returns:
- The receiver leg of the swap.
-
getLegPayer
Return the payer leg of the swap, i.e. the leg who's value is subtracted from the swap value.- Returns:
- The payer leg of the swap.
-
toString
-
getDescriptor
Description copied from interface:DescribedProduct
Return a product descriptor representing this product.- Specified by:
getDescriptor
in interfaceDescribedProduct<InterestRateSwapProductDescriptor>
- Returns:
- The product descriptor of this product.
-