public static double GetValue(Product prod, int sourceType, int tenorType, DateTime delStart, DateTime marketDate) { return prod.ReturnCurveSeries(sourceType).GetValue(tenorType, delStart, marketDate); }
public SortedList<DateTime, double> GetFwdCurveFromDates(Product prod, int sourceType, int tenorType, List<DateTime> delDateArr, DateTime marketDate) { return prod.ReturnCurveSeries(sourceType).GetFwdCurveFromDates(tenorType, delDateArr, marketDate); }
public static SortedList<DateTime, double> GetDevlpCurveFromDates(Product prod, int sourceType, int tenorType, DateTime delDate, List<DateTime> marketDateArr) { return prod.ReturnCurveSeries(sourceType).GetDevlpCurveFromDates(tenorType, delDate, marketDateArr); }
public SortedList<DateTime, double> GetFwdCurve(Product prod, int sourceType, int tenorType, DateTime delDateFrom, DateTime delDateTo, DateTime marketDate) { return prod.ReturnCurveSeries(sourceType).GetFwdCurve(tenorType, delDateFrom, delDateTo, marketDate); }