FixFloatSwapIMM.java

  1. package org.drip.sample.multicurve;

  2. import java.util.*;

  3. import org.drip.analytics.date.*;
  4. import org.drip.analytics.support.*;
  5. import org.drip.function.r1tor1.FlatUnivariate;
  6. import org.drip.market.otc.*;
  7. import org.drip.param.creator.*;
  8. import org.drip.param.market.CurveSurfaceQuoteContainer;
  9. import org.drip.param.period.*;
  10. import org.drip.param.valuation.*;
  11. import org.drip.product.creator.*;
  12. import org.drip.product.definition.*;
  13. import org.drip.product.rates.*;
  14. import org.drip.service.env.EnvManager;
  15. import org.drip.spline.basis.PolynomialFunctionSetParams;
  16. import org.drip.spline.stretch.MultiSegmentSequenceBuilder;
  17. import org.drip.state.creator.*;
  18. import org.drip.state.discount.*;
  19. import org.drip.state.forward.ForwardCurve;
  20. import org.drip.state.identifier.*;

  21. /*
  22.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  23.  */

  24. /*!
  25.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  26.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  27.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  28.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  29.  *
  30.  *  This file is part of DRIP, a free-software/open-source library for buy/side financial/trading model
  31.  *      libraries targeting analysts and developers
  32.  *      https://lakshmidrip.github.io/DRIP/
  33.  *  
  34.  *  DRIP is composed of four main libraries:
  35.  *  
  36.  *  - DRIP Fixed Income - https://lakshmidrip.github.io/DRIP-Fixed-Income/
  37.  *  - DRIP Asset Allocation - https://lakshmidrip.github.io/DRIP-Asset-Allocation/
  38.  *  - DRIP Numerical Optimizer - https://lakshmidrip.github.io/DRIP-Numerical-Optimizer/
  39.  *  - DRIP Statistical Learning - https://lakshmidrip.github.io/DRIP-Statistical-Learning/
  40.  *
  41.  *  - DRIP Fixed Income: Library for Instrument/Trading Conventions, Treasury Futures/Options,
  42.  *      Funding/Forward/Overnight Curves, Multi-Curve Construction/Valuation, Collateral Valuation and XVA
  43.  *      Metric Generation, Calibration and Hedge Attributions, Statistical Curve Construction, Bond RV
  44.  *      Metrics, Stochastic Evolution and Option Pricing, Interest Rate Dynamics and Option Pricing, LMM
  45.  *      Extensions/Calibrations/Greeks, Algorithmic Differentiation, and Asset Backed Models and Analytics.
  46.  *
  47.  *  - DRIP Asset Allocation: Library for model libraries for MPT framework, Black Litterman Strategy
  48.  *      Incorporator, Holdings Constraint, and Transaction Costs.
  49.  *
  50.  *  - DRIP Numerical Optimizer: Library for Numerical Optimization and Spline Functionality.
  51.  *
  52.  *  - DRIP Statistical Learning: Library for Statistical Evaluation and Machine Learning.
  53.  *
  54.  *  Licensed under the Apache License, Version 2.0 (the "License");
  55.  *      you may not use this file except in compliance with the License.
  56.  *  
  57.  *  You may obtain a copy of the License at
  58.  *      http://www.apache.org/licenses/LICENSE-2.0
  59.  *  
  60.  *  Unless required by applicable law or agreed to in writing, software
  61.  *      distributed under the License is distributed on an "AS IS" BASIS,
  62.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  63.  *  
  64.  *  See the License for the specific language governing permissions and
  65.  *      limitations under the License.
  66.  */

  67. /**
  68.  * FixFloatSwapIMM contains a full valuation run on the IMM Fix-Float Swap Product.
  69.  *
  70.  * @author Lakshmi Krishnamurthy
  71.  */

  72. public class FixFloatSwapIMM {

  73.     private static final FixFloatComponent OTCFixFloat (
  74.         final JulianDate dtSpot,
  75.         final String strCurrency,
  76.         final String strMaturityTenor,
  77.         final double dblCoupon)
  78.     {
  79.         FixedFloatSwapConvention ffConv = IBORFixedFloatContainer.ConventionFromJurisdiction (
  80.             strCurrency,
  81.             "ALL",
  82.             strMaturityTenor,
  83.             "MAIN"
  84.         );

  85.         return ffConv.createFixFloatComponent (
  86.             dtSpot,
  87.             strMaturityTenor,
  88.             dblCoupon,
  89.             0.,
  90.             1.
  91.         );
  92.     }

  93.     private static final FloatFloatComponent OTCFloatFloat (
  94.         final JulianDate dtSpot,
  95.         final String strCurrency,
  96.         final String strDerivedTenor,
  97.         final String strMaturityTenor,
  98.         final double dblBasis)
  99.     {
  100.         FloatFloatSwapConvention ffConv = IBORFloatFloatContainer.ConventionFromJurisdiction (strCurrency);

  101.         return ffConv.createFloatFloatComponent (
  102.             dtSpot,
  103.             strDerivedTenor,
  104.             strMaturityTenor,
  105.             dblBasis,
  106.             1.
  107.         );
  108.     }

  109.     /*
  110.      * Construct the Array of Deposit Instruments from the given set of parameters
  111.      *
  112.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  113.      */

  114.     private static final CalibratableComponent[] DepositInstrumentsFromMaturityDays (
  115.         final JulianDate dtEffective,
  116.         final int[] aiDay,
  117.         final int iNumFutures,
  118.         final String strCurrency)
  119.         throws Exception
  120.     {
  121.         CalibratableComponent[] aCalibComp = new CalibratableComponent[aiDay.length + iNumFutures];

  122.         for (int i = 0; i < aiDay.length; ++i)
  123.             aCalibComp[i] = SingleStreamComponentBuilder.Deposit (
  124.                 dtEffective,
  125.                 dtEffective.addBusDays (
  126.                     aiDay[i],
  127.                     strCurrency
  128.                 ),
  129.                 ForwardLabel.Create (
  130.                     strCurrency,
  131.                     "3M"
  132.                 )
  133.             );

  134.         CalibratableComponent[] aEDF = SingleStreamComponentBuilder.ForwardRateFuturesPack (
  135.             dtEffective,
  136.             iNumFutures,
  137.             strCurrency
  138.         );

  139.         for (int i = aiDay.length; i < aiDay.length + iNumFutures; ++i)
  140.             aCalibComp[i] = aEDF[i - aiDay.length];

  141.         return aCalibComp;
  142.     }

  143.     /*
  144.      * Construct the Array of Swap Instruments from the given set of parameters
  145.      *
  146.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  147.      */

  148.     private static final CalibratableComponent[] SwapInstrumentsFromMaturityTenor (
  149.         final JulianDate dtSpot,
  150.         final String strCurrency,
  151.         final String[] astrMaturityTenor,
  152.         final double[] adblCoupon)
  153.         throws Exception
  154.     {
  155.         FixFloatComponent[] aIRS = new FixFloatComponent[astrMaturityTenor.length];

  156.         for (int i = 0; i < astrMaturityTenor.length; ++i)
  157.             aIRS[i] = OTCFixFloat (
  158.                 dtSpot,
  159.                 strCurrency,
  160.                 astrMaturityTenor[i],
  161.                 adblCoupon[i]
  162.             );

  163.         return aIRS;
  164.     }

  165.     /*
  166.      * Construct the discount curve using the following steps:
  167.      *  - Construct the array of cash instruments and their quotes.
  168.      *  - Construct the array of swap instruments and their quotes.
  169.      *  - Construct a shape preserving and smoothing KLK Hyperbolic Spline from the cash/swap instruments.
  170.      *
  171.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  172.      */

  173.     private static final MergedDiscountForwardCurve MakeDC (
  174.         final JulianDate dtSpot,
  175.         final String strCurrency)
  176.         throws Exception
  177.     {
  178.         /*
  179.          * Construct the array of Deposit instruments and their quotes.
  180.          */

  181.         CalibratableComponent[] aDepositComp = DepositInstrumentsFromMaturityDays (
  182.             dtSpot,
  183.             new int[] {
  184.                 1, 2, 3, 7, 14, 21, 30, 60
  185.             },
  186.             0,
  187.             strCurrency
  188.         );

  189.         double[] adblDepositQuote = new double[] {
  190.             0.01200, 0.01200, 0.01200, 0.01450, 0.01550, 0.01600, 0.01660, 0.01850
  191.         };

  192.         String[] astrDepositManifestMeasure = new String[] {
  193.             "ForwardRate",
  194.             "ForwardRate",
  195.             "ForwardRate",
  196.             "ForwardRate",
  197.             "ForwardRate",
  198.             "ForwardRate",
  199.             "ForwardRate",
  200.             "ForwardRate"
  201.         };

  202.         /*
  203.          * Construct the array of Swap instruments and their quotes.
  204.          */

  205.         double[] adblSwapQuote = new double[] {
  206.             0.02604,    //  4Y
  207.             0.02808,    //  5Y
  208.             0.02983,    //  6Y
  209.             0.03136,    //  7Y
  210.             0.03268,    //  8Y
  211.             0.03383,    //  9Y
  212.             0.03488,    // 10Y
  213.             0.03583,    // 11Y
  214.             0.03668,    // 12Y
  215.             0.03833,    // 15Y
  216.             0.03854,    // 20Y
  217.             0.03672,    // 25Y
  218.             0.03510,    // 30Y
  219.             0.03266,    // 40Y
  220.             0.03145     // 50Y
  221.         };

  222.         String[] astrSwapManifestMeasure = new String[] {
  223.             "SwapRate",    //  4Y
  224.             "SwapRate",    //  5Y
  225.             "SwapRate",    //  6Y
  226.             "SwapRate",    //  7Y
  227.             "SwapRate",    //  8Y
  228.             "SwapRate",    //  9Y
  229.             "SwapRate",    // 10Y
  230.             "SwapRate",    // 11Y
  231.             "SwapRate",    // 12Y
  232.             "SwapRate",    // 15Y
  233.             "SwapRate",    // 20Y
  234.             "SwapRate",    // 25Y
  235.             "SwapRate",    // 30Y
  236.             "SwapRate",    // 40Y
  237.             "SwapRate"     // 50Y
  238.         };

  239.         CalibratableComponent[] aSwapComp = SwapInstrumentsFromMaturityTenor (
  240.             dtSpot,
  241.             strCurrency,
  242.             new java.lang.String[] {
  243.                 "4Y", "5Y", "6Y", "7Y", "8Y", "9Y", "10Y", "11Y", "12Y", "15Y", "20Y", "25Y", "30Y", "40Y", "50Y"
  244.             },
  245.             adblSwapQuote
  246.         );

  247.         /*
  248.          * Construct a shape preserving and smoothing KLK Hyperbolic Spline from the cash/swap instruments.
  249.          */

  250.         return ScenarioDiscountCurveBuilder.CubicKLKHyperbolicDFRateShapePreserver (
  251.             "KLK_HYPERBOLIC_SHAPE_TEMPLATE",
  252.             new ValuationParams (
  253.                 dtSpot,
  254.                 dtSpot,
  255.                 "USD"
  256.             ),
  257.             aDepositComp,
  258.             adblDepositQuote,
  259.             astrDepositManifestMeasure,
  260.             aSwapComp,
  261.             adblSwapQuote,
  262.             astrSwapManifestMeasure,
  263.             false
  264.         );
  265.     }

  266.     /*
  267.      * Construct an array of float-float swaps from the corresponding reference (6M) and the derived legs.
  268.      *
  269.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  270.      */

  271.     private static final FloatFloatComponent[] MakexM6MBasisSwap (
  272.         final JulianDate dtSpot,
  273.         final String strCurrency,
  274.         final String[] astrMaturityTenor,
  275.         final int iTenorInMonths)
  276.         throws Exception
  277.     {
  278.         FloatFloatComponent[] aFFC = new FloatFloatComponent[astrMaturityTenor.length];

  279.         for (int i = 0; i < astrMaturityTenor.length; ++i)
  280.             aFFC[i] = OTCFloatFloat (
  281.                 dtSpot,
  282.                 strCurrency,
  283.                 iTenorInMonths + "M",
  284.                 astrMaturityTenor[i],
  285.                 0.
  286.             );

  287.         return aFFC;
  288.     }

  289.     private static final ForwardCurve MakeFC (
  290.         final JulianDate dtSpot,
  291.         final String strCurrency,
  292.         final MergedDiscountForwardCurve dc,
  293.         final int iTenorInMonths,
  294.         final String[] astrxM6MFwdTenor,
  295.         final double[] adblxM6MBasisSwapQuote)
  296.         throws Exception
  297.     {
  298.         /*
  299.          * Construct the 6M-xM float-float basis swap.
  300.          */

  301.         FloatFloatComponent[] aFFC = MakexM6MBasisSwap (
  302.             dtSpot,
  303.             strCurrency,
  304.             astrxM6MFwdTenor,
  305.             iTenorInMonths
  306.         );

  307.         String strBasisTenor = iTenorInMonths + "M";

  308.         ValuationParams valParams = new ValuationParams (
  309.             dtSpot,
  310.             dtSpot,
  311.             strCurrency
  312.         );

  313.         /*
  314.          * Calculate the starting forward rate off of the discount curve.
  315.          */

  316.         double dblStartingFwd = dc.forward (
  317.             dtSpot.julian(),
  318.             dtSpot.addTenor (strBasisTenor).julian()
  319.         );

  320.         /*
  321.          * Set the discount curve based component market parameters.
  322.          */

  323.         CurveSurfaceQuoteContainer mktParams = MarketParamsBuilder.Create (
  324.             dc,
  325.             null,
  326.             null,
  327.             null,
  328.             null,
  329.             null,
  330.             null
  331.         );

  332.         /*
  333.          * Construct the shape preserving forward curve off of Quartic Polynomial Basis Spline.
  334.          */

  335.         return ScenarioForwardCurveBuilder.ShapePreservingForwardCurve (
  336.             "QUARTIC_FWD" + strBasisTenor,
  337.             ForwardLabel.Create (
  338.                 strCurrency,
  339.                 strBasisTenor
  340.             ),
  341.             valParams,
  342.             null,
  343.             mktParams,
  344.             null,
  345.             MultiSegmentSequenceBuilder.BASIS_SPLINE_POLYNOMIAL,
  346.             new PolynomialFunctionSetParams (5),
  347.             aFFC,
  348.             "DerivedParBasisSpread",
  349.             adblxM6MBasisSwapQuote,
  350.             dblStartingFwd
  351.         );
  352.     }

  353.     private static final Map<String, ForwardCurve> MakeFC (
  354.         final JulianDate dt,
  355.         final String strCurrency,
  356.         final MergedDiscountForwardCurve dc)
  357.         throws Exception
  358.     {
  359.         Map<String, ForwardCurve> mapFC = new HashMap<String, ForwardCurve>();

  360.         /*
  361.          * Build and run the sampling for the 1M-6M Tenor Basis Swap from its instruments and quotes.
  362.          */

  363.         ForwardCurve fc1M = MakeFC (
  364.             dt,
  365.             strCurrency,
  366.             dc,
  367.             1,
  368.             new String[] {
  369.                 "1Y", "2Y", "3Y", "4Y", "5Y", "6Y", "7Y", "8Y", "9Y", "10Y", "11Y", "12Y", "15Y", "20Y", "25Y", "30Y"
  370.             },
  371.             new double[] {
  372.                 0.00551,    //  1Y
  373.                 0.00387,    //  2Y
  374.                 0.00298,    //  3Y
  375.                 0.00247,    //  4Y
  376.                 0.00211,    //  5Y
  377.                 0.00185,    //  6Y
  378.                 0.00165,    //  7Y
  379.                 0.00150,    //  8Y
  380.                 0.00137,    //  9Y
  381.                 0.00127,    // 10Y
  382.                 0.00119,    // 11Y
  383.                 0.00112,    // 12Y
  384.                 0.00096,    // 15Y
  385.                 0.00079,    // 20Y
  386.                 0.00069,    // 25Y
  387.                 0.00062     // 30Y
  388.                 }
  389.             );

  390.         mapFC.put ("1M", fc1M);

  391.         /*
  392.          * Build and run the sampling for the 3M-6M Tenor Basis Swap from its instruments and quotes.
  393.          */

  394.         ForwardCurve fc3M = MakeFC (
  395.             dt,
  396.             strCurrency,
  397.             dc,
  398.             3,
  399.             new String[] {
  400.                 "1Y", "2Y", "3Y", "4Y", "5Y", "6Y", "7Y", "8Y", "9Y", "10Y", "11Y", "12Y", "15Y", "20Y", "25Y", "30Y"
  401.             },
  402.             new double[] {
  403.                 0.00186,    //  1Y
  404.                 0.00127,    //  2Y
  405.                 0.00097,    //  3Y
  406.                 0.00080,    //  4Y
  407.                 0.00067,    //  5Y
  408.                 0.00058,    //  6Y
  409.                 0.00051,    //  7Y
  410.                 0.00046,    //  8Y
  411.                 0.00042,    //  9Y
  412.                 0.00038,    // 10Y
  413.                 0.00035,    // 11Y
  414.                 0.00033,    // 12Y
  415.                 0.00028,    // 15Y
  416.                 0.00022,    // 20Y
  417.                 0.00020,    // 25Y
  418.                 0.00018     // 30Y
  419.                 }
  420.             );

  421.         mapFC.put (
  422.             "3M",
  423.             fc3M
  424.         );

  425.         /*
  426.          * Build and run the sampling for the 12M-6M Tenor Basis Swap from its instruments and quotes.
  427.          */

  428.         ForwardCurve fc12M = MakeFC (
  429.             dt,
  430.             strCurrency,
  431.             dc,
  432.             12,
  433.             new String[] {
  434.                 "1Y", "2Y", "3Y", "4Y", "5Y", "6Y", "7Y", "8Y", "9Y", "10Y", "11Y", "12Y", "15Y", "20Y", "25Y", "30Y",
  435.                 "35Y", "40Y" // Extrapolated
  436.             },
  437.             new double[] {
  438.                 -0.00212,    //  1Y
  439.                 -0.00152,    //  2Y
  440.                 -0.00117,    //  3Y
  441.                 -0.00097,    //  4Y
  442.                 -0.00082,    //  5Y
  443.                 -0.00072,    //  6Y
  444.                 -0.00063,    //  7Y
  445.                 -0.00057,    //  8Y
  446.                 -0.00051,    //  9Y
  447.                 -0.00047,    // 10Y
  448.                 -0.00044,    // 11Y
  449.                 -0.00041,    // 12Y
  450.                 -0.00035,    // 15Y
  451.                 -0.00028,    // 20Y
  452.                 -0.00025,    // 25Y
  453.                 -0.00022,    // 30Y
  454.                 -0.00022,    // 35Y Extrapolated
  455.                 -0.00022,    // 40Y Extrapolated
  456.                 }
  457.             );

  458.         mapFC.put (
  459.             "12M",
  460.             fc12M
  461.         );

  462.         return mapFC;
  463.     }

  464.     private static final FixFloatComponent CreateSTIR (
  465.         final JulianDate dtEffective,
  466.         final String strMaturityTenor,
  467.         final ForwardLabel fri,
  468.         final double dblCoupon,
  469.         final String strCurrency)
  470.         throws Exception
  471.     {
  472.         JulianDate dtMaturity = dtEffective.addTenor (strMaturityTenor);

  473.         int iTenorInMonths = Helper.TenorToMonths (fri.tenor());

  474.         UnitCouponAccrualSetting ucasFixed = new UnitCouponAccrualSetting (
  475.             2,
  476.             "Act/360",
  477.             false,
  478.             "Act/360",
  479.             false,
  480.             strCurrency,
  481.             true,
  482.             CompositePeriodBuilder.ACCRUAL_COMPOUNDING_RULE_GEOMETRIC
  483.         );

  484.         ComposableFloatingUnitSetting cfusFloating = new ComposableFloatingUnitSetting (
  485.             fri.tenor(),
  486.             CompositePeriodBuilder.EDGE_DATE_SEQUENCE_SINGLE,
  487.             null,
  488.             fri,
  489.             CompositePeriodBuilder.REFERENCE_PERIOD_IN_ADVANCE,
  490.             0.
  491.         );

  492.         ComposableFixedUnitSetting cfusFixed = new ComposableFixedUnitSetting (
  493.             "6M",
  494.             CompositePeriodBuilder.EDGE_DATE_SEQUENCE_REGULAR,
  495.             null,
  496.             dblCoupon,
  497.             0.,
  498.             strCurrency
  499.         );

  500.         CompositePeriodSetting cpsFloating = new CompositePeriodSetting (
  501.             12 / iTenorInMonths,
  502.             fri.tenor(),
  503.             strCurrency,
  504.             null,
  505.             -1.,
  506.             null,
  507.             null,
  508.             null,
  509.             null
  510.         );

  511.         CompositePeriodSetting cpsFixed = new CompositePeriodSetting (
  512.             2,
  513.             "6M",
  514.             strCurrency,
  515.             null,
  516.             1.,
  517.             null,
  518.             null,
  519.             null,
  520.             null
  521.         );

  522.         CashSettleParams csp = new CashSettleParams (
  523.             0,
  524.             strCurrency,
  525.             0
  526.         );

  527.         List<Integer> lsFixedStreamEdgeDate = CompositePeriodBuilder.RegularEdgeDates (
  528.             dtEffective,
  529.             "6M",
  530.             strMaturityTenor,
  531.             null
  532.         );

  533.         List<Integer> lsFloatingStreamEdgeDate = CompositePeriodBuilder.RegularEdgeDates (
  534.             dtEffective,
  535.             fri.tenor(),
  536.             strMaturityTenor,
  537.             null
  538.         );

  539.         Stream floatingStream = new Stream (
  540.             CompositePeriodBuilder.FloatingCompositeUnit (
  541.                 lsFloatingStreamEdgeDate,
  542.                 cpsFloating,
  543.                 cfusFloating
  544.             )
  545.         );

  546.         Stream fixedStream = new Stream (
  547.             CompositePeriodBuilder.FixedCompositeUnit (
  548.                 lsFixedStreamEdgeDate,
  549.                 cpsFixed,
  550.                 ucasFixed,
  551.                 cfusFixed
  552.             )
  553.         );

  554.         FixFloatComponent irs = new FixFloatComponent (
  555.             fixedStream,
  556.             floatingStream,
  557.             csp
  558.         );

  559.         irs.setPrimaryCode ("IRS." + dtMaturity.toString() + "." + strCurrency);

  560.         return irs;
  561.     }

  562.     private static final void RunWithVolCorrelation (
  563.         final FixFloatComponent stir,
  564.         final ValuationParams valParams,
  565.         final CurveSurfaceQuoteContainer mktParams,
  566.         final ForwardLabel fri,
  567.         final double dblForwardVol,
  568.         final double dblFundingVol,
  569.         final double dblForwardFundingCorr)
  570.         throws Exception
  571.     {
  572.         FundingLabel fundingLabel = FundingLabel.Standard (fri.currency());

  573.         mktParams.setForwardVolatility (
  574.             ScenarioDeterministicVolatilityBuilder.FlatForward (
  575.                 valParams.valueDate(),
  576.                 VolatilityLabel.Standard (fri),
  577.                 fri.currency(),
  578.                 dblForwardVol
  579.             )
  580.         );

  581.         mktParams.setFundingVolatility (
  582.             ScenarioDeterministicVolatilityBuilder.FlatForward (
  583.                 valParams.valueDate(),
  584.                 VolatilityLabel.Standard (fundingLabel),
  585.                 fri.currency(),
  586.                 dblFundingVol
  587.             )
  588.         );

  589.         mktParams.setForwardFundingCorrelation (
  590.             fri,
  591.             fundingLabel,
  592.             new FlatUnivariate (dblForwardFundingCorr)
  593.         );

  594.         Map<String, Double> mapSTIROutput = stir.value (
  595.             valParams,
  596.             null,
  597.             mktParams,
  598.             null
  599.         );

  600.         for (Map.Entry<String, Double> me : mapSTIROutput.entrySet())
  601.             System.out.println ("\t" + me.getKey() + " => " + me.getValue());
  602.     }

  603.     public static final void main (
  604.         final String[] astrArgs)
  605.         throws Exception
  606.     {
  607.         /*
  608.          * Initialize the Credit Analytics Library
  609.          */

  610.         EnvManager.InitEnv ("");

  611.         String strTenor = "3M";
  612.         String strCurrency = "USD";
  613.         double dblForwardVolatility = 0.3;
  614.         double dblFundingVolatility = 0.1;
  615.         double dblForwardFundingCorr = 0.2;

  616.         JulianDate dtToday = DateUtil.Today().addTenor ("0D");

  617.         /*
  618.          * Construct the Discount Curve using its instruments and quotes
  619.          */

  620.         MergedDiscountForwardCurve dc = MakeDC (
  621.             dtToday,
  622.             strCurrency
  623.         );

  624.         Map<String, ForwardCurve> mapFC = MakeFC (
  625.             dtToday,
  626.             strCurrency,
  627.             dc
  628.         );

  629.         ForwardLabel fri = ForwardLabel.Create (
  630.             strCurrency,
  631.             strTenor
  632.         );

  633.         FixFloatComponent stir = CreateSTIR (
  634.             dtToday.addTenor (strTenor),
  635.             "5Y",
  636.             fri,
  637.             0.05,
  638.             strCurrency
  639.         );

  640.         CurveSurfaceQuoteContainer mktParams = MarketParamsBuilder.Create (
  641.             dc,
  642.             mapFC.get (strTenor),
  643.             null,
  644.             null,
  645.             null,
  646.             null,
  647.             null,
  648.             null
  649.         );

  650.         ValuationParams valParams = new ValuationParams (
  651.             dtToday,
  652.             dtToday,
  653.             strCurrency
  654.         );

  655.         RunWithVolCorrelation (
  656.             stir,
  657.             valParams,
  658.             mktParams,
  659.             fri,
  660.             dblForwardVolatility,
  661.             dblFundingVolatility,
  662.             dblForwardFundingCorr
  663.         );
  664.     }
  665. }