net.finmath.marketdata.model.curves.ForwardCurveWithFixings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-lib Show documentation
Show all versions of finmath-lib Show documentation
finmath lib is a Mathematical Finance Library in Java.
It provides algorithms and methodologies related to mathematical finance.
/*
* (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
*
* Created on 22.05.2014
*/
package net.finmath.marketdata.model.curves;
import net.finmath.marketdata.model.AnalyticModelInterface;
/**
* @author Christian Fries
*
*/
public class ForwardCurveWithFixings extends PiecewiseCurve implements ForwardCurveInterface {
private static final long serialVersionUID = -6192098475095644443L;
/**
* Create a piecewise forward curve.
*
* @param curveInterface Base curve, to be used by default.
* @param fixedPartCurve Curve to be used for the open time interval from fixedPartStartTime to fixedPartEndTime.
* @param fixedPartStartTime Start time of the interval where we use the fixedPartCurve.
* @param fixedPartEndTime End time of the interval where we use the fixedPartCurve.
*/
public ForwardCurveWithFixings(ForwardCurveInterface curveInterface, ForwardCurveInterface fixedPartCurve, double fixedPartStartTime, double fixedPartEndTime) {
super(curveInterface, fixedPartCurve, fixedPartStartTime, fixedPartEndTime);
}
@Override
public double getForward(AnalyticModelInterface model, double fixingTime) {
if(fixingTime > this.getFixedPartStartTime() && fixingTime < this.getFixedPartEndTime()) {
return ((ForwardCurveInterface)getFixedPartCurve()).getForward(model, fixingTime);
}
else {
return ((ForwardCurveInterface)getBaseCurve()).getForward(model, fixingTime);
}
}
@Override
public double getForward(AnalyticModelInterface model, double fixingTime, double paymentOffset) {
if(fixingTime > this.getFixedPartStartTime() && fixingTime < this.getFixedPartEndTime()) {
return ((ForwardCurveInterface)getFixedPartCurve()).getForward(model, fixingTime, paymentOffset);
}
else {
return ((ForwardCurveInterface)getBaseCurve()).getForward(model, fixingTime, paymentOffset);
}
}
/**
* Returns the forwards for a given vector fixing times.
*
* @param model An analytic model providing a context. The discount curve (if needed) is obtained from this model.
* @param fixingTimes The given fixing times.
* @return The forward rates.
*/
public double[] getForwards(AnalyticModelInterface model, double[] fixingTimes)
{
double[] values = new double[fixingTimes.length];
for(int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy