/** * Copyright (C) 2014 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.analytics.tutorial.datasets; import java.util.LinkedHashMap; import org.apache.commons.lang.ArrayUtils; import org.threeten.bp.Period; import org.threeten.bp.ZonedDateTime; import com.opengamma.analytics.financial.curve.interestrate.generator.GeneratorCurveDiscountFactorInterpolated; import com.opengamma.analytics.financial.curve.interestrate.generator.GeneratorCurveYieldInterpolated; import com.opengamma.analytics.financial.curve.interestrate.generator.GeneratorYDCurve; import com.opengamma.analytics.financial.datasets.CalendarUSD; import com.opengamma.analytics.financial.forex.method.FXMatrix; import com.opengamma.analytics.financial.instrument.InstrumentDefinition; import com.opengamma.analytics.financial.instrument.cash.CashDefinition; import com.opengamma.analytics.financial.instrument.cash.DepositIborDefinition; import com.opengamma.analytics.financial.instrument.index.GeneratorAttribute; import com.opengamma.analytics.financial.instrument.index.GeneratorAttributeIR; import com.opengamma.analytics.financial.instrument.index.GeneratorInstrument; import com.opengamma.analytics.financial.instrument.index.GeneratorSwapFixedIbor; import com.opengamma.analytics.financial.instrument.index.GeneratorSwapFixedIborMaster; import com.opengamma.analytics.financial.instrument.index.GeneratorSwapFixedON; import com.opengamma.analytics.financial.instrument.index.GeneratorSwapFixedONMaster; import com.opengamma.analytics.financial.instrument.index.IborIndex; import com.opengamma.analytics.financial.instrument.index.IndexIborMaster; import com.opengamma.analytics.financial.instrument.index.IndexON; import com.opengamma.analytics.financial.interestrate.InstrumentDerivative; import com.opengamma.analytics.financial.interestrate.InstrumentDerivativeVisitor; import com.opengamma.analytics.financial.provider.calculator.discounting.ParSpreadMarketQuoteCurveSensitivityDiscountingCalculator; import com.opengamma.analytics.financial.provider.calculator.discounting.ParSpreadMarketQuoteDiscountingCalculator; import com.opengamma.analytics.financial.provider.calculator.discounting.ParSpreadRateCurveSensitivityDiscountingCalculator; import com.opengamma.analytics.financial.provider.calculator.discounting.ParSpreadRateDiscountingCalculator; import com.opengamma.analytics.financial.provider.calculator.generic.LastTimeCalculator; import com.opengamma.analytics.financial.provider.curve.CurveBuildingBlockBundle; import com.opengamma.analytics.financial.provider.curve.CurveCalibrationConventionDataSets; import com.opengamma.analytics.financial.provider.curve.CurveCalibrationTestsUtils; import com.opengamma.analytics.financial.provider.curve.multicurve.MulticurveDiscountBuildingRepository; import com.opengamma.analytics.financial.provider.description.interestrate.MulticurveProviderDiscount; import com.opengamma.analytics.financial.provider.description.interestrate.ParameterProviderInterface; import com.opengamma.analytics.financial.provider.sensitivity.multicurve.MulticurveSensitivity; import com.opengamma.analytics.financial.schedule.ScheduleCalculator; import com.opengamma.analytics.math.interpolation.CombinedInterpolatorExtrapolatorFactory; import com.opengamma.analytics.math.interpolation.Interpolator1D; import com.opengamma.analytics.math.interpolation.Interpolator1DFactory; import com.opengamma.financial.convention.calendar.Calendar; import com.opengamma.financial.convention.rolldate.QuarterlyIMMRollDateAdjuster; import com.opengamma.financial.convention.rolldate.RollDateAdjusterUtils; import com.opengamma.timeseries.precise.zdt.ImmutableZonedDateTimeDoubleTimeSeries; import com.opengamma.timeseries.precise.zdt.ZonedDateTimeDoubleTimeSeries; import com.opengamma.util.money.Currency; import com.opengamma.util.time.DateUtils; import com.opengamma.util.tuple.Pair; /** * Curves calibration in USD: * ONDSC-OIS/LIBOR3M-FRAIRS/LIBOR1M-BS/LIBOR6M-BS * Recent market data. Standard instruments with futures on LIBOR3M. */ public class UsdDatasetJuly16 { public static final Interpolator1D INTERPOLATOR_LINEAR = CombinedInterpolatorExtrapolatorFactory.getInterpolator(Interpolator1DFactory.LINEAR, Interpolator1DFactory.FLAT_EXTRAPOLATOR, Interpolator1DFactory.FLAT_EXTRAPOLATOR); public static final Interpolator1D INTERPOLATOR_LOG_LINEAR = CombinedInterpolatorExtrapolatorFactory.getInterpolator(Interpolator1DFactory.LOG_LINEAR, Interpolator1DFactory.EXPONENTIAL_EXTRAPOLATOR, Interpolator1DFactory.EXPONENTIAL_EXTRAPOLATOR); private static final LastTimeCalculator MATURITY_CALCULATOR = LastTimeCalculator.getInstance(); private static final Calendar NYC = new CalendarUSD("NYC"); private static final Currency USD = Currency.USD; private static final FXMatrix FX_MATRIX = new FXMatrix(USD); private static final double NOTIONAL = 1.0; private static final IndexIborMaster IBOR_MASTER = IndexIborMaster.getInstance(); private static final GeneratorSwapFixedONMaster GENERATOR_OIS_MASTER = GeneratorSwapFixedONMaster.getInstance(); private static final GeneratorSwapFixedIborMaster GENERATOR_IRS_MASTER = GeneratorSwapFixedIborMaster.getInstance(); private static final GeneratorSwapFixedON GENERATOR_OIS_USD = GENERATOR_OIS_MASTER.getGenerator("USD1YFEDFUND", NYC); private static final IndexON USDFEDFUND = GENERATOR_OIS_USD.getIndex(); private static final GeneratorSwapFixedIbor USD6MLIBOR3M = GENERATOR_IRS_MASTER.getGenerator("USD6MLIBOR3M", NYC); private static final IborIndex USDLIBOR3M = USD6MLIBOR3M.getIborIndex(); private static final IborIndex USDLIBOR1M = IBOR_MASTER.getIndex("USDLIBOR1M"); private static final IborIndex USDLIBOR6M = IBOR_MASTER.getIndex("USDLIBOR6M"); private static final String CURVE_NAME_DSC_USD = "USD-DSCON-OIS"; private static final String CURVE_NAME_FWD3_USD = "USD-LIBOR3M-FRAIRS"; /** Data as of 16-Jul-2014 */ /** Market values for the dsc USD curve */ private static final double[] DSC_USD_MARKET_QUOTES = new double[] {0.0009, 0.001, 0.00096, 0.00097, 0.001, 0.00103, 0.00107, 0.00111, 0.00115, 0.00124, 0.00135, 0.00147, 0.001635, 0.0023, 0.00317, 0.00405, 0.00504, 0.00936, 0.0131, 0.01594, 0.01827, 0.02021, 0.02171, 0.02302, 0.02418, 0.02601, 0.02796, 0.02967, 0.03044, 0.03078, 0.030927, 0.0311 }; // 32 /** Generators for the dsc USD curve */ private static final GeneratorInstrument<? extends GeneratorAttribute>[] DSC_USD_GENERATORS = CurveCalibrationConventionDataSets.generatorUsdOnOisFfs(1, 31, 0); /** Tenors for the dsc USD curve */ private static final Period[] DSC_2_USD_TENOR = new Period[] {Period.ofDays(0), Period.ofMonths(1), Period.ofMonths(2), Period.ofMonths(3), Period.ofMonths(4), Period.ofMonths(5), Period.ofMonths(6), Period.ofMonths(7), Period.ofMonths(8), Period.ofMonths(9), Period.ofMonths(10), Period.ofMonths(11), Period.ofMonths(12), Period.ofMonths(15), Period.ofMonths(18), Period.ofMonths(21), Period.ofYears(2), Period.ofYears(3), Period.ofYears(4), Period.ofYears(5), Period.ofYears(6), Period.ofYears(7), Period.ofYears(8), Period.ofYears(9), Period.ofYears(10), Period.ofYears(12), Period.ofYears(15), Period.ofYears(20), Period.ofYears(25), Period.ofYears(30), Period.ofYears(35), Period.ofYears(40) }; private static final GeneratorAttributeIR[] DSC_USD_ATTR = new GeneratorAttributeIR[DSC_2_USD_TENOR.length]; static { for (int loopins = 0; loopins < 1; loopins++) { DSC_USD_ATTR[loopins] = new GeneratorAttributeIR(DSC_2_USD_TENOR[loopins], Period.ofDays(0)); } for (int loopins = 1; loopins < DSC_2_USD_TENOR.length; loopins++) { DSC_USD_ATTR[loopins] = new GeneratorAttributeIR(DSC_2_USD_TENOR[loopins]); } } /** Market values for the Fwd 3M USD curve */ private static final double[] FWD3_USD_MARKET_QUOTES = new double[] {0.001554, 0.00196, 0.002336, 0.997656, 0.997318, 0.996284, 0.994304, 0.991979, 0.989509, 0.986993, 0.984333, 0.981626, 0.979119, 0.011142, 0.014996, 0.017995, 0.020411, //0.00667, 0.022352, 0.02395, 0.0253, 0.026465, 0.02835, 0.030288, 0.032007, 0.032775, 0.033145, 0.03333 }; //27 /** Generators for the Fwd 3M USD curve */ /** Tenors for the Fwd 3M USD curve */ private static final Period[] FWD3_2_USD_TENOR = new Period[] {Period.ofMonths(1), Period.ofMonths(2), Period.ofMonths(3), Period.ofMonths(0), Period.ofMonths(0), Period.ofMonths(0), Period.ofMonths(0), Period.ofMonths(0), Period.ofMonths(0), Period.ofMonths(0), Period.ofMonths(0), Period.ofMonths(0), Period.ofMonths(0), Period.ofYears(3), Period.ofYears(4), Period.ofYears(5), Period.ofYears(6), //Period.ofYears(2), Period.ofYears(7), Period.ofYears(8), Period.ofYears(9), Period.ofYears(10), Period.ofYears(12), Period.ofYears(15), Period.ofYears(20), Period.ofYears(25), Period.ofYears(30), Period.ofYears(40) }; private static final GeneratorAttributeIR[] FWD3_USD_ATTR = new GeneratorAttributeIR[FWD3_2_USD_TENOR.length]; static { for (int loopins = 0; loopins < FWD3_2_USD_TENOR.length; loopins++) { FWD3_USD_ATTR[loopins] = new GeneratorAttributeIR(FWD3_2_USD_TENOR[loopins]); } } /** Units of curves */ private static final int NB_UNITS = 2; private static final int NB_BLOCKS = 2; private static final GeneratorYDCurve[][] ZERO_RATE_LINEAR_INTERPOLATION_GENERATORS = new GeneratorYDCurve[NB_BLOCKS][NB_UNITS]; private static final GeneratorYDCurve[][] DISCOUNT_FACTOR_LOG_LINEAR_INTERPOLATION_GENERATORS = new GeneratorYDCurve[NB_BLOCKS][NB_UNITS]; private static final String[][] NAMES_UNITS = new String[NB_BLOCKS][NB_UNITS]; private static final MulticurveProviderDiscount KNOWN_DATA = new MulticurveProviderDiscount(FX_MATRIX); private static final LinkedHashMap<String, Currency> DSC_MAP = new LinkedHashMap<>(); private static final LinkedHashMap<String, IndexON[]> FWD_ON_MAP = new LinkedHashMap<>(); private static final LinkedHashMap<String, IborIndex[]> FWD_IBOR_MAP = new LinkedHashMap<>(); static { final GeneratorYDCurve genIntLin = new GeneratorCurveYieldInterpolated(MATURITY_CALCULATOR, INTERPOLATOR_LINEAR); ZERO_RATE_LINEAR_INTERPOLATION_GENERATORS[0][0] = genIntLin; ZERO_RATE_LINEAR_INTERPOLATION_GENERATORS[0][1] = genIntLin; ZERO_RATE_LINEAR_INTERPOLATION_GENERATORS[1][0] = genIntLin; ZERO_RATE_LINEAR_INTERPOLATION_GENERATORS[1][1] = genIntLin; final GeneratorYDCurve logLinInterpolationGenerator = new GeneratorCurveDiscountFactorInterpolated(MATURITY_CALCULATOR, INTERPOLATOR_LOG_LINEAR); DISCOUNT_FACTOR_LOG_LINEAR_INTERPOLATION_GENERATORS[0][0] = logLinInterpolationGenerator; DISCOUNT_FACTOR_LOG_LINEAR_INTERPOLATION_GENERATORS[0][1] = logLinInterpolationGenerator; DISCOUNT_FACTOR_LOG_LINEAR_INTERPOLATION_GENERATORS[1][0] = logLinInterpolationGenerator; DISCOUNT_FACTOR_LOG_LINEAR_INTERPOLATION_GENERATORS[1][1] = logLinInterpolationGenerator; NAMES_UNITS[0][0] = CURVE_NAME_DSC_USD; NAMES_UNITS[0][1] = CURVE_NAME_FWD3_USD; NAMES_UNITS[1][0] = CURVE_NAME_FWD3_USD; NAMES_UNITS[1][1] = CURVE_NAME_DSC_USD; DSC_MAP.put(CURVE_NAME_DSC_USD, USD); FWD_ON_MAP.put(CURVE_NAME_DSC_USD, new IndexON[] {USDFEDFUND }); FWD_IBOR_MAP.put(CURVE_NAME_FWD3_USD, new IborIndex[] {USDLIBOR3M }); } @SuppressWarnings({"unchecked", "rawtypes" }) public static InstrumentDefinition<?>[] getDefinitions(final double[] marketQuotes, final GeneratorInstrument[] generators, final GeneratorAttribute[] attribute, final ZonedDateTime referenceDate) { final InstrumentDefinition<?>[] definitions = new InstrumentDefinition<?>[marketQuotes.length]; for (int loopmv = 0; loopmv < marketQuotes.length; loopmv++) { definitions[loopmv] = generators[loopmv].generateInstrument(referenceDate, marketQuotes[loopmv], NOTIONAL, attribute[loopmv]); } return definitions; } /** Calculators */ private static final InstrumentDerivativeVisitor<ParameterProviderInterface, Double> PSMQDC = ParSpreadMarketQuoteDiscountingCalculator.getInstance(); // Market quotes private static final InstrumentDerivativeVisitor<ParameterProviderInterface, Double> PSRDC = ParSpreadRateDiscountingCalculator.getInstance(); // Rate version of market quotes, in particular future price replaced by future rate sensitivity. private static final InstrumentDerivativeVisitor<ParameterProviderInterface, MulticurveSensitivity> PSMQCSC = ParSpreadMarketQuoteCurveSensitivityDiscountingCalculator.getInstance(); // Market quotes private static final InstrumentDerivativeVisitor<ParameterProviderInterface, MulticurveSensitivity> PSRCSC = ParSpreadRateCurveSensitivityDiscountingCalculator.getInstance(); // Rate version of market quotes, in particular future price replaced by future rate sensitivity. private static final MulticurveDiscountBuildingRepository CURVE_BUILDING_REPOSITORY = CurveCalibrationConventionDataSets.curveBuildingRepositoryMulticurve(); /** * Calibrate curves with hard-coded date and with calibration date the date provided. The curves are discounting/overnight forward, * Libor3M forward, Libor1M forward and Libor6M forward. * @param calibrationDate The calibration date. * @return The curves and the Jacobian matrices. */ public static Pair<MulticurveProviderDiscount, CurveBuildingBlockBundle> getStandardCurveBundle( final ZonedDateTime calibrationDate, boolean marketQuoteRisk, final Interpolator1D interpolator) { GeneratorInstrument<? extends GeneratorAttribute>[] fwd3Generators = CurveCalibrationConventionDataSets.generatorUsdIbor3Fut3Irs3(calibrationDate, 3, 10, 14); InstrumentDefinition<?>[][][] definitionsUnits = new InstrumentDefinition<?>[NB_UNITS][][]; InstrumentDefinition<?>[] definitionsDsc = getDefinitions(DSC_USD_MARKET_QUOTES, DSC_USD_GENERATORS, DSC_USD_ATTR, calibrationDate); InstrumentDefinition<?>[] definitionsFwd3 = getDefinitions(FWD3_USD_MARKET_QUOTES, fwd3Generators, FWD3_USD_ATTR, calibrationDate); definitionsUnits[0] = new InstrumentDefinition<?>[][] {definitionsDsc }; definitionsUnits[1] = new InstrumentDefinition<?>[][] {definitionsFwd3 }; InstrumentDerivativeVisitor<ParameterProviderInterface, Double> target; InstrumentDerivativeVisitor<ParameterProviderInterface, MulticurveSensitivity> targetSensitivity; if (marketQuoteRisk) { target = PSMQDC; targetSensitivity = PSMQCSC; } else { target = PSRDC; targetSensitivity = PSRCSC; } GeneratorYDCurve[][] generators = null; if(interpolator == INTERPOLATOR_LINEAR) { generators = ZERO_RATE_LINEAR_INTERPOLATION_GENERATORS; } else if (interpolator == INTERPOLATOR_LOG_LINEAR) { generators = DISCOUNT_FACTOR_LOG_LINEAR_INTERPOLATION_GENERATORS; } return CurveCalibrationTestsUtils.makeCurvesFromDefinitionsMulticurve(calibrationDate, definitionsUnits, generators, NAMES_UNITS, KNOWN_DATA, target, targetSensitivity, false, DSC_MAP, FWD_ON_MAP, FWD_IBOR_MAP, CURVE_BUILDING_REPOSITORY, TS_FIXED_OIS_USD_WITH_TODAY, TS_FIXED_OIS_USD_WITHOUT_TODAY, TS_FIXED_IBOR_USD3M_WITH_LAST, TS_FIXED_IBOR_USD3M_WITHOUT_LAST); } private static Pair<MulticurveProviderDiscount, CurveBuildingBlockBundle> getImmHedgeCurveBundle( ZonedDateTime calibrationDate, ParameterProviderInterface standardCurveBundle, final Interpolator1D interpolator, int nbImmSwaps, InstrumentDerivativeVisitor<ParameterProviderInterface, Double> target, InstrumentDerivativeVisitor<ParameterProviderInterface, MulticurveSensitivity> targetSensitivity) { ZonedDateTime spotDate = ScheduleCalculator.getAdjustedDate(calibrationDate, USDLIBOR3M.getSpotLag(), NYC); ZonedDateTime[] immDates = new ZonedDateTime[nbImmSwaps + 1]; for (int loopimm = 0; loopimm < nbImmSwaps + 1; loopimm++) { immDates[loopimm] = RollDateAdjusterUtils.nthDate(spotDate, QuarterlyIMMRollDateAdjuster.getAdjuster(), loopimm + 1); } // Steps: 1) Create the instruments with market quote 0 // 2) Compute the par spread market quote. As the initial quote is 0, the spread is equal to the actual market quote required. // 3) Create the instrument with market quote ATM /** Forward 3M curve **/ /** Instruments 0 */ InstrumentDefinition<?> dep0Definitions = new DepositIborDefinition(USD, calibrationDate, immDates[0], NOTIONAL, 0.0d, USDLIBOR3M.getDayCount().getDayCountFraction(calibrationDate, immDates[0]), USDLIBOR3M); InstrumentDefinition<?>[] swp0Definitions = ComputedDataSetsMulticurveImmUsd.generateImmIrs(immDates, new double[nbImmSwaps]); InstrumentDerivative[] fwd3m0 = new InstrumentDerivative[nbImmSwaps + 1]; fwd3m0[0] = dep0Definitions.toDerivative(calibrationDate); for (int loopimm = 0; loopimm < nbImmSwaps; loopimm++) { fwd3m0[loopimm + 1] = swp0Definitions[loopimm].toDerivative(calibrationDate); } /** Market quote (using PSMQC) */ double[] marketQuoteFwd3m = new double[nbImmSwaps + 1]; for (int loopimm = 0; loopimm < nbImmSwaps + 1; loopimm++) { marketQuoteFwd3m[loopimm] = fwd3m0[loopimm].accept(target, standardCurveBundle); } /** Instruments ATM */ InstrumentDefinition<?>[][][] definitionsUnits = new InstrumentDefinition<?>[NB_UNITS][][]; InstrumentDefinition<?>[] fwd3Definitions = new InstrumentDefinition<?>[nbImmSwaps + 1]; fwd3Definitions[0] = new DepositIborDefinition(USD, calibrationDate, immDates[0], NOTIONAL, marketQuoteFwd3m[0], USDLIBOR3M.getDayCount().getDayCountFraction(calibrationDate, immDates[0]), USDLIBOR3M); double[] parRateSwp = ArrayUtils.subarray(marketQuoteFwd3m, 1, nbImmSwaps + 1); InstrumentDefinition<?>[] swpDefinition = ComputedDataSetsMulticurveImmUsd.generateImmIrs(immDates, parRateSwp); for (int loopimm = 0; loopimm < nbImmSwaps; loopimm++) { fwd3Definitions[loopimm + 1] = swpDefinition[loopimm]; } /** Dsc curve */ /** Instruments 0 */ InstrumentDefinition<?> dep0DscDefinitions = new CashDefinition(USD, calibrationDate, immDates[0], NOTIONAL, 0.0d, USDFEDFUND.getDayCount().getDayCountFraction(calibrationDate, immDates[0])); InstrumentDefinition<?>[] ois0Definitions = ComputedDataSetsMulticurveImmUsd.generateImmOis(immDates, new double[nbImmSwaps]); InstrumentDerivative[] dsc0 = new InstrumentDerivative[nbImmSwaps + 1]; dsc0[0] = dep0DscDefinitions.toDerivative(calibrationDate); for (int loopimm = 0; loopimm < nbImmSwaps; loopimm++) { dsc0[loopimm + 1] = ois0Definitions[loopimm].toDerivative(calibrationDate); } /** Market quote (using PSMQC) */ double[] marketQuoteDsc = new double[nbImmSwaps + 1]; for (int loopimm = 0; loopimm < nbImmSwaps + 1; loopimm++) { marketQuoteDsc[loopimm] = dsc0[loopimm].accept(target, standardCurveBundle); } /** Instruments ATM */ InstrumentDefinition<?>[] dscDefinitions = new InstrumentDefinition<?>[nbImmSwaps + 1]; dscDefinitions[0] = new CashDefinition(USD, calibrationDate, immDates[0], NOTIONAL, marketQuoteDsc[0], USDFEDFUND.getDayCount().getDayCountFraction(calibrationDate, immDates[0])); InstrumentDefinition<?>[] oisDefinition = ComputedDataSetsMulticurveImmUsd.generateImmOis(immDates, ArrayUtils.subarray(marketQuoteDsc, 1, nbImmSwaps + 1)); for (int loopimm = 0; loopimm < nbImmSwaps; loopimm++) { dscDefinitions[loopimm + 1] = oisDefinition[loopimm]; } definitionsUnits[0] = new InstrumentDefinition<?>[][] {dscDefinitions }; definitionsUnits[1] = new InstrumentDefinition<?>[][] {fwd3Definitions }; GeneratorYDCurve[][] generators = null; if(interpolator == INTERPOLATOR_LINEAR) { generators = ZERO_RATE_LINEAR_INTERPOLATION_GENERATORS; } else if (interpolator == INTERPOLATOR_LOG_LINEAR) { generators = DISCOUNT_FACTOR_LOG_LINEAR_INTERPOLATION_GENERATORS; } return CurveCalibrationTestsUtils.makeCurvesFromDefinitionsMulticurve(calibrationDate, definitionsUnits, generators, NAMES_UNITS, KNOWN_DATA, target, targetSensitivity, false, DSC_MAP, FWD_ON_MAP, FWD_IBOR_MAP, CURVE_BUILDING_REPOSITORY, TS_FIXED_OIS_USD_WITH_TODAY, TS_FIXED_OIS_USD_WITHOUT_TODAY, ComputedDataSetsMulticurveImmUsd.TS_FIXED_IBOR_USD3M_WITH_TODAY, ComputedDataSetsMulticurveImmUsd.TS_FIXED_IBOR_USD3M_WITHOUT_TODAY); } public static Pair<MulticurveProviderDiscount, CurveBuildingBlockBundle> getHedgeCurveBundle( ZonedDateTime calibrationDate, ParameterProviderInterface standardCurveBundle, final Interpolator1D interpolator, int nbCashInstruments, int nbImmSwaps, int nbOisVsFixedSwaps, int nbFedFundVsFixedSwaps, boolean marketQuoteRisk) { InstrumentDerivativeVisitor<ParameterProviderInterface, Double> target; InstrumentDerivativeVisitor<ParameterProviderInterface, MulticurveSensitivity> targetSensitivity; if (marketQuoteRisk) { target = PSMQDC; targetSensitivity = PSMQCSC; } else { target = PSRDC; targetSensitivity = PSRCSC; } if(nbImmSwaps > 0) { return getImmHedgeCurveBundle(calibrationDate, standardCurveBundle, interpolator, nbImmSwaps, target, targetSensitivity); } else { /// The forward curve does not change in this case, it's the original STD curve GeneratorInstrument<? extends GeneratorAttribute>[] fwd3Generators = CurveCalibrationConventionDataSets.generatorUsdIbor3Fut3Irs3(calibrationDate, 3, 10, 14); InstrumentDefinition<?>[] fwd3Definitions = getDefinitions(FWD3_USD_MARKET_QUOTES, fwd3Generators, FWD3_USD_ATTR, calibrationDate); /// The discount curve is a mix of cash, OIS vs Fixed swaps and Fed Fund vs Fixed swaps final GeneratorInstrument<? extends GeneratorAttribute>[] discountGenerators = CurveCalibrationConventionDataSets.generatorUsdOnOisFfs(nbCashInstruments, nbOisVsFixedSwaps, nbFedFundVsFixedSwaps); int nbDscNode = DSC_USD_MARKET_QUOTES.length; double[] initialMarketQuotes = new double[nbDscNode]; InstrumentDefinition<?>[] initialDiscountDefinitions = getDefinitions(initialMarketQuotes, discountGenerators, DSC_USD_ATTR, calibrationDate); double[] computedMarketQuotes = new double[nbDscNode]; for (int loopdsc = 0; loopdsc < nbDscNode; loopdsc++) { InstrumentDerivative derivative = CurveCalibrationTestsUtils.convert(initialDiscountDefinitions[loopdsc], false, calibrationDate, TS_FIXED_OIS_USD_WITH_TODAY, TS_FIXED_OIS_USD_WITHOUT_TODAY, TS_FIXED_IBOR_USD3M_WITH_LAST, TS_FIXED_IBOR_USD3M_WITHOUT_LAST); computedMarketQuotes[loopdsc] = derivative.accept(target, standardCurveBundle); } InstrumentDefinition<?>[] discountDefinitions = getDefinitions(computedMarketQuotes, discountGenerators, DSC_USD_ATTR, calibrationDate); InstrumentDefinition<?>[][][] definitions = new InstrumentDefinition<?>[1][][]; // definitions[0] = new InstrumentDefinition<?>[][] {discountDefinitions}; // definitions[1] = new InstrumentDefinition<?>[][] {fwd3Definitions}; definitions[0] = new InstrumentDefinition<?>[][] {discountDefinitions, fwd3Definitions}; GeneratorYDCurve[][] generators = null; if(interpolator == INTERPOLATOR_LINEAR) { generators = ZERO_RATE_LINEAR_INTERPOLATION_GENERATORS; } else if (interpolator == INTERPOLATOR_LOG_LINEAR) { generators = DISCOUNT_FACTOR_LOG_LINEAR_INTERPOLATION_GENERATORS; } return CurveCalibrationTestsUtils.makeCurvesFromDefinitionsMulticurve(calibrationDate, definitions, generators, NAMES_UNITS, KNOWN_DATA, target, targetSensitivity, false, DSC_MAP, FWD_ON_MAP, FWD_IBOR_MAP, CURVE_BUILDING_REPOSITORY, TS_FIXED_OIS_USD_WITH_TODAY, TS_FIXED_OIS_USD_WITHOUT_TODAY, TS_FIXED_IBOR_USD3M_WITH_LAST, TS_FIXED_IBOR_USD3M_WITHOUT_LAST); } } /** * Returns the array of Ibor index used in the curve data set. * @return The array: USDLIBOR1M, USDLIBOR3M, USDLIBOR6M */ public static IborIndex[] indexIborArrayUSDOisL1L3L6() { return new IborIndex[] {USDLIBOR1M, USDLIBOR3M, USDLIBOR6M }; } /** * Returns the array of overnight index used in the curve data set. * @return The array: USDFEDFUND */ public static IndexON[] indexONArray() { return new IndexON[] {USDFEDFUND }; } /** * Returns the array of calendars used in the curve data set. * @return The array: NYC */ public static Calendar[] calendarArray() { return new Calendar[] {NYC }; } /** * Returns an array with one time series corresponding to the USD LIBOR3M fixing up to and including the last date. * @return */ public static ZonedDateTimeDoubleTimeSeries fixingUsdLibor3MWithLast() { return TS_IBOR_USD3M_WITH_LAST; } /** * Returns an array with one time series corresponding to the USD LIBOR3M fixing up to and including the last date. * @return */ public static ZonedDateTimeDoubleTimeSeries fixingUsdLibor3MWithoutLast() { return TS_IBOR_USD3M_WITHOUT_LAST; } private static final ZonedDateTimeDoubleTimeSeries TS_EMPTY = ImmutableZonedDateTimeDoubleTimeSeries.ofEmptyUTC(); private static final ZonedDateTimeDoubleTimeSeries TS_ON_USD_WITH_TODAY = ImmutableZonedDateTimeDoubleTimeSeries.ofUTC( new ZonedDateTime[] {DateUtils.getUTCDate(2011, 9, 27), DateUtils.getUTCDate(2011, 9, 28) }, new double[] {0.07, 0.08 }); private static final ZonedDateTimeDoubleTimeSeries TS_ON_USD_WITHOUT_TODAY = ImmutableZonedDateTimeDoubleTimeSeries.ofUTC(new ZonedDateTime[] {DateUtils.getUTCDate(2011, 9, 27), DateUtils.getUTCDate(2011, 9, 28) }, new double[] {0.07, 0.08 }); private static final ZonedDateTimeDoubleTimeSeries[] TS_FIXED_OIS_USD_WITH_TODAY = new ZonedDateTimeDoubleTimeSeries[] {TS_EMPTY, TS_ON_USD_WITH_TODAY }; private static final ZonedDateTimeDoubleTimeSeries[] TS_FIXED_OIS_USD_WITHOUT_TODAY = new ZonedDateTimeDoubleTimeSeries[] {TS_EMPTY, TS_ON_USD_WITHOUT_TODAY }; private static final ZonedDateTimeDoubleTimeSeries TS_IBOR_USD3M_WITH_LAST = ImmutableZonedDateTimeDoubleTimeSeries.ofUTC( new ZonedDateTime[] {DateUtils.getUTCDate(2014, 7, 1), DateUtils.getUTCDate(2014, 7, 2), DateUtils.getUTCDate(2014, 7, 3), DateUtils.getUTCDate(2014, 7, 4), DateUtils.getUTCDate(2014, 7, 7), DateUtils.getUTCDate(2014, 7, 8), DateUtils.getUTCDate(2014, 7, 9), DateUtils.getUTCDate(2014, 7, 10), DateUtils.getUTCDate(2014, 7, 11), DateUtils.getUTCDate(2014, 7, 14), DateUtils.getUTCDate(2014, 7, 15), DateUtils.getUTCDate(2014, 7, 16), DateUtils.getUTCDate(2014, 7, 17), DateUtils.getUTCDate(2014, 7, 18), DateUtils.getUTCDate(2014, 7, 21), DateUtils.getUTCDate(2014, 7, 22), DateUtils.getUTCDate(2014, 7, 23), DateUtils.getUTCDate(2014, 7, 24), DateUtils.getUTCDate(2014, 7, 25), DateUtils.getUTCDate(2014, 7, 28) }, new double[] {0.002318, 0.002346, 0.002321, 0.002331, 0.002341, 0.002336, 0.002341, 0.002336, 0.002336, 0.002326, 0.002331, 0.002336, 0.002336, 0.002316, 0.002331, 0.002326, 0.002341, 0.002351, 0.002341, 0.002341 }); private static final ZonedDateTimeDoubleTimeSeries TS_IBOR_USD3M_WITHOUT_LAST = ImmutableZonedDateTimeDoubleTimeSeries.ofUTC( new ZonedDateTime[] {DateUtils.getUTCDate(2014, 7, 1), DateUtils.getUTCDate(2014, 7, 2), DateUtils.getUTCDate(2014, 7, 3), DateUtils.getUTCDate(2014, 7, 4), DateUtils.getUTCDate(2014, 7, 7), DateUtils.getUTCDate(2014, 7, 8), DateUtils.getUTCDate(2014, 7, 9), DateUtils.getUTCDate(2014, 7, 10), DateUtils.getUTCDate(2014, 7, 11), DateUtils.getUTCDate(2014, 7, 14), DateUtils.getUTCDate(2014, 7, 15), DateUtils.getUTCDate(2014, 7, 16), DateUtils.getUTCDate(2014, 7, 17), DateUtils.getUTCDate(2014, 7, 18), DateUtils.getUTCDate(2014, 7, 21), DateUtils.getUTCDate(2014, 7, 22), DateUtils.getUTCDate(2014, 7, 23), DateUtils.getUTCDate(2014, 7, 24), DateUtils.getUTCDate(2014, 7, 25) }, new double[] {0.002318, 0.002346, 0.002321, 0.002331, 0.002341, 0.002336, 0.002341, 0.002336, 0.002336, 0.002326, 0.002331, 0.002336, 0.002336, 0.002316, 0.002331, 0.002326, 0.002341, 0.002351, 0.002341 }); private static final ZonedDateTimeDoubleTimeSeries[] TS_FIXED_IBOR_USD3M_WITH_LAST = new ZonedDateTimeDoubleTimeSeries[] {TS_IBOR_USD3M_WITH_LAST }; private static final ZonedDateTimeDoubleTimeSeries[] TS_FIXED_IBOR_USD3M_WITHOUT_LAST = new ZonedDateTimeDoubleTimeSeries[] {TS_IBOR_USD3M_WITHOUT_LAST }; }