ShapePreservingZeroSmooth.java

  1. package org.drip.sample.funding;

  2. import org.drip.analytics.date.*;
  3. import org.drip.analytics.definition.LatentStateStatic;
  4. import org.drip.function.r1tor1.QuadraticRationalShapeControl;
  5. import org.drip.market.otc.*;
  6. import org.drip.numerical.common.FormatUtil;
  7. import org.drip.param.creator.*;
  8. import org.drip.param.valuation.*;
  9. import org.drip.product.creator.*;
  10. import org.drip.product.definition.CalibratableComponent;
  11. import org.drip.product.rates.*;
  12. import org.drip.service.env.EnvManager;
  13. import org.drip.spline.basis.*;
  14. import org.drip.spline.params.*;
  15. import org.drip.spline.pchip.LocalMonotoneCkGenerator;
  16. import org.drip.spline.stretch.*;
  17. import org.drip.state.creator.ScenarioDiscountCurveBuilder;
  18. import org.drip.state.discount.*;
  19. import org.drip.state.estimator.*;
  20. import org.drip.state.identifier.*;
  21. import org.drip.state.inference.*;

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

  25. /*!
  26.  * Copyright (C) 2019 Lakshmi Krishnamurthy
  27.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  28.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  29.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  30.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  31.  * Copyright (C) 2014 Lakshmi Krishnamurthy
  32.  *
  33.  *  This file is part of DROP, an open-source library targeting risk, transaction costs, exposure, margin
  34.  *      calculations, valuation adjustment, and portfolio construction within and across fixed income,
  35.  *      credit, commodity, equity, FX, and structured products.
  36.  *  
  37.  *      https://lakshmidrip.github.io/DROP/
  38.  *  
  39.  *  DROP is composed of three modules:
  40.  *  
  41.  *  - DROP Analytics Core - https://lakshmidrip.github.io/DROP-Analytics-Core/
  42.  *  - DROP Portfolio Core - https://lakshmidrip.github.io/DROP-Portfolio-Core/
  43.  *  - DROP Numerical Core - https://lakshmidrip.github.io/DROP-Numerical-Core/
  44.  *
  45.  *  DROP Analytics Core implements libraries for the following:
  46.  *  - Fixed Income Analytics
  47.  *  - Asset Backed Analytics
  48.  *  - XVA Analytics
  49.  *  - Exposure and Margin Analytics
  50.  *
  51.  *  DROP Portfolio Core implements libraries for the following:
  52.  *  - Asset Allocation Analytics
  53.  *  - Transaction Cost Analytics
  54.  *
  55.  *  DROP Numerical Core implements libraries for the following:
  56.  *  - Statistical Learning
  57.  *  - Numerical Optimizer
  58.  *  - Spline Builder
  59.  *  - Algorithm Support
  60.  *
  61.  *  Documentation for DROP is Spread Over:
  62.  *
  63.  *  - Main                     => https://lakshmidrip.github.io/DROP/
  64.  *  - Wiki                     => https://github.com/lakshmiDRIP/DROP/wiki
  65.  *  - GitHub                   => https://github.com/lakshmiDRIP/DROP
  66.  *  - Repo Layout Taxonomy     => https://github.com/lakshmiDRIP/DROP/blob/master/Taxonomy.md
  67.  *  - Javadoc                  => https://lakshmidrip.github.io/DROP/Javadoc/index.html
  68.  *  - Technical Specifications => https://github.com/lakshmiDRIP/DROP/tree/master/Docs/Internal
  69.  *  - Release Versions         => https://lakshmidrip.github.io/DROP/version.html
  70.  *  - Community Credits        => https://lakshmidrip.github.io/DROP/credits.html
  71.  *  - Issues Catalog           => https://github.com/lakshmiDRIP/DROP/issues
  72.  *  - JUnit                    => https://lakshmidrip.github.io/DROP/junit/index.html
  73.  *  - Jacoco                   => https://lakshmidrip.github.io/DROP/jacoco/index.html
  74.  *
  75.  *  Licensed under the Apache License, Version 2.0 (the "License");
  76.  *      you may not use this file except in compliance with the License.
  77.  *  
  78.  *  You may obtain a copy of the License at
  79.  *      http://www.apache.org/licenses/LICENSE-2.0
  80.  *  
  81.  *  Unless required by applicable law or agreed to in writing, software
  82.  *      distributed under the License is distributed on an "AS IS" BASIS,
  83.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  84.  *  
  85.  *  See the License for the specific language governing permissions and
  86.  *      limitations under the License.
  87.  */

  88. /**
  89.  * <i>ShapePreservingZeroSmooth</i> demonstrates the usage of different shape preserving and smoothing
  90.  * techniques involved in the funding curve creation. It shows the following:
  91.  *  
  92.  * <br><br>
  93.  *  <ul>
  94.  *      <li>
  95.  *          Construct the Array of Cash/Swap Instruments and their Quotes from the given set of parameters.
  96.  *      </li>
  97.  *      <li>
  98.  *          Construct the Cash/Swap Instrument Set Stretch Builder.
  99.  *      </li>
  100.  *      <li>
  101.  *          Set up the Linear Curve Calibrator using the following parameters:
  102.  *          <ul>
  103.  *              <li>
  104.  *                  Cubic Exponential Mixture Basis Spline Set
  105.  *              </li>
  106.  *              <li>
  107.  *                  C<sub>k</sub> = 2
  108.  *                  Segment Curvature Penalty = 2
  109.  *              </li>
  110.  *              <li>
  111.  *                  Quadratic Rational Shape Controller
  112.  *              </li>
  113.  *              <li>
  114.  *                  Natural Boundary Setting
  115.  *              </li>
  116.  *          </ul>
  117.  *      </li>
  118.  *      <li>
  119.  *          Set up the Global Curve Control parameters as follows:
  120.  *          <ul>
  121.  *              <li>
  122.  *                  Zero Rate Quantification Metric
  123.  *              </li>
  124.  *              <li>
  125.  *                  Cubic Polynomial Basis Spline Set
  126.  *              </li>
  127.  *              <li>
  128.  *                  C<sub>k</sub> = 2
  129.  *                  Segment Curvature Penalty = 2
  130.  *              </li>
  131.  *              <li>
  132.  *                  Quadratic Rational Shape Controller
  133.  *              </li>
  134.  *              <li>
  135.  *                  Natural Boundary Setting
  136.  *              </li>
  137.  *          </ul>
  138.  *      </li>
  139.  *      <li>
  140.  *          Set up the Local Curve Control parameters as follows:
  141.  *          <ul>
  142.  *              <li>
  143.  *                  C1 Bessel Monotone Smoothener with no spurious extrema elimination and no monotone filter
  144.  *              </li>
  145.  *              <li>
  146.  *                  Zero Rate Quantification Metric
  147.  *              </li>
  148.  *              <li>
  149.  *                  Cubic Polynomial Basis Spline Set
  150.  *              </li>
  151.  *              <li>
  152.  *                  C<sub>k</sub> = 2
  153.  *                  Segment Curvature Penalty = 2
  154.  *              </li>
  155.  *              <li>
  156.  *                  Quadratic Rational Shape Controller
  157.  *              </li>
  158.  *              <li>
  159.  *                  Natural Boundary Setting
  160.  *              </li>
  161.  *          </ul>
  162.  *      </li>
  163.  *      <li>
  164.  *          Construct the Shape Preserving Discount Curve by applying the linear curve calibrator to the
  165.  *              array of Cash and Swap Stretches.
  166.  *      </li>
  167.  *      <li>
  168.  *          Construct the Globally Smoothened Discount Curve by applying the linear curve calibrator and the
  169.  *              Global Curve Control parameters to the array of Cash and Swap Stretches and the shape
  170.  *              preserving discount curve.
  171.  *      </li>
  172.  *      <li>
  173.  *          Construct the Locally Smoothened Discount Curve by applying the linear curve calibrator and the
  174.  *              Local Curve Control parameters to the array of Cash and Swap Stretches and the shape
  175.  *              preserving discount curve.
  176.  *      </li>
  177.  *      <li>
  178.  *          Cross-Comparison of the Cash/Swap Calibration Instrument "Rate" metric across the different curve
  179.  *              construction methodologies.
  180.  *      </li>
  181.  *      <li>
  182.  *          Cross-Comparison of the Swap Calibration Instrument "Rate" metric across the different curve
  183.  *              construction methodologies for a sequence of bespoke swap instruments.
  184.  *      </li>
  185.  *  </ul>
  186.  *  
  187.  * <br><br>
  188.  *  <ul>
  189.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/AnalyticsCore.md">Analytics Core Module</a></li>
  190.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics Library</a></li>
  191.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/README.md">Sample</a></li>
  192.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/funding/README.md">Funding Curve Builder</a></li>
  193.  *  </ul>
  194.  * <br><br>
  195.  *
  196.  * @author Lakshmi Krishnamurthy
  197.  */

  198. public class ShapePreservingZeroSmooth {

  199.     private static final FixFloatComponent OTCIRS (
  200.         final JulianDate dtSpot,
  201.         final String strCurrency,
  202.         final String strMaturityTenor,
  203.         final double dblCoupon)
  204.     {
  205.         FixedFloatSwapConvention ffConv = IBORFixedFloatContainer.ConventionFromJurisdiction (
  206.             strCurrency,
  207.             "ALL",
  208.             strMaturityTenor,
  209.             "MAIN"
  210.         );

  211.         return ffConv.createFixFloatComponent (
  212.             dtSpot,
  213.             strMaturityTenor,
  214.             dblCoupon,
  215.             0.,
  216.             1.
  217.         );
  218.     }

  219.     /*
  220.      * Construct the Array of Deposit Instruments from the given set of parameters
  221.      *
  222.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  223.      */

  224.     private static final SingleStreamComponent[] DepositInstrumentsFromMaturityDays (
  225.         final JulianDate dtEffective,
  226.         final String strCurrency,
  227.         final int[] aiDay)
  228.         throws Exception
  229.     {
  230.         SingleStreamComponent[] aDeposit = new SingleStreamComponent[aiDay.length];

  231.         for (int i = 0; i < aiDay.length; ++i)
  232.             aDeposit[i] = SingleStreamComponentBuilder.Deposit (
  233.                 dtEffective,
  234.                 dtEffective.addBusDays (
  235.                     aiDay[i],
  236.                     strCurrency
  237.                 ),
  238.                 ForwardLabel.Create (
  239.                     "USD",
  240.                     "3M"
  241.                 )
  242.             );

  243.         return aDeposit;
  244.     }

  245.     /*
  246.      * Construct the Array of Swap Instruments from the given set of parameters
  247.      *
  248.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  249.      */

  250.     private static final FixFloatComponent[] SwapInstrumentsFromMaturityTenor (
  251.         final JulianDate dtSpot,
  252.         final String strCurrency,
  253.         final String[] astrMaturityTenor)
  254.         throws Exception
  255.     {
  256.         FixFloatComponent[] aIRS = new FixFloatComponent[astrMaturityTenor.length];

  257.         for (int i = 0; i < astrMaturityTenor.length; ++i) {
  258.             FixFloatComponent irs = OTCIRS (
  259.                 dtSpot,
  260.                 strCurrency,
  261.                 astrMaturityTenor[i],
  262.                 0.
  263.             );

  264.             irs.setPrimaryCode ("IRS." + astrMaturityTenor[i] + "." + strCurrency);

  265.             aIRS[i] = irs;
  266.         }

  267.         return aIRS;
  268.     }

  269.     /*
  270.      * This sample demonstrates the usage of different shape preserving and smoothing techniques involved in
  271.      *  the discount curve creation. It shows the following:
  272.      *  - Construct the Array of Cash/Swap Instruments and their Quotes from the given set of parameters.
  273.      *  - Construct the Cash/Swap Instrument Set Stretch Builder.
  274.      *  - Set up the Linear Curve Calibrator using the following parameters:
  275.      *      - Cubic Exponential Mixture Basis Spline Set
  276.      *      - Ck = 2, Segment Curvature Penalty = 2
  277.      *      - Quadratic Rational Shape Controller
  278.      *      - Natural Boundary Setting
  279.      *  - Set up the Global Curve Control parameters as follows:
  280.      *      - Zero Rate Quantification Metric
  281.      *      - Cubic Polynomial Basis Spline Set
  282.      *      - Ck = 2, Segment Curvature Penalty = 2
  283.      *      - Quadratic Rational Shape Controller
  284.      *      - Natural Boundary Setting
  285.      *  - Set up the Local Curve Control parameters as follows:
  286.      *      - C1 Bessel Monotone Smoothener with no spurious extrema elimination and no monotone filter
  287.      *      - Zero Rate Quantification Metric
  288.      *      - Cubic Polynomial Basis Spline Set
  289.      *      - Ck = 2, Segment Curvature Penalty = 2
  290.      *      - Quadratic Rational Shape Controller
  291.      *      - Natural Boundary Setting
  292.      *  - Construct the Shape Preserving Discount Curve by applying the linear curve calibrator to the array
  293.      *      of Cash and Swap Stretches.
  294.      *  - Construct the Globally Smoothened Discount Curve by applying the linear curve calibrator and the
  295.      *      Global Curve Control parameters to the array of Cash and Swap Stretches and the shape preserving
  296.      *      discount curve.
  297.      *  - Construct the Locally Smoothened Discount Curve by applying the linear curve calibrator and the
  298.      *      Local Curve Control parameters to the array of Cash and Swap Stretches and the shape preserving
  299.      *      discount curve.
  300.      *  - Cross-Comparison of the Cash/Swap Calibration Instrument "Rate" metric across the different curve
  301.      *      construction methodologies.
  302.      *  - Cross-Comparison of the Swap Calibration Instrument "Rate" metric across the different curve
  303.      *      construction methodologies for a sequence of bespoke swap instruments.
  304.      *
  305.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  306.      */

  307.     private static final void ShapePreservingDFZeroSmoothSample (
  308.         final JulianDate dtSpot,
  309.         final String strCurrency)
  310.         throws Exception
  311.     {
  312.         /*
  313.          * Construct the Array of Deposit Instruments and their Quotes from the given set of parameters
  314.          */

  315.         SingleStreamComponent[] aDepositComp = DepositInstrumentsFromMaturityDays (
  316.             dtSpot,
  317.             strCurrency,
  318.             new int[] {
  319.                 2,
  320.                 7,
  321.                 14,
  322.                 30,
  323.                 60
  324.             }
  325.         );

  326.         double[] adblDepositQuote = new double[] {
  327.             0.0013,
  328.             0.0017,
  329.             0.0018,
  330.             0.0020,
  331.             0.0023
  332.         };

  333.         /*
  334.          * Construct the Deposit Instrument Set Stretch Builder
  335.          */

  336.         LatentStateStretchSpec depositStretch = LatentStateStretchBuilder.ForwardFundingStretchSpec (
  337.             "DEPOSIT",
  338.             aDepositComp,
  339.             "ForwardRate",
  340.             adblDepositQuote
  341.         );

  342.         /*
  343.          * Construct the Array of EDF Instruments and their Quotes from the given set of parameters
  344.          */

  345.         SingleStreamComponent[] aEDFComp = SingleStreamComponentBuilder.ForwardRateFuturesPack (
  346.             dtSpot,
  347.             8,
  348.             strCurrency
  349.         );

  350.         double[] adblEDFQuote = new double[] {
  351.             0.0027,
  352.             0.0032,
  353.             0.0041,
  354.             0.0054,
  355.             0.0077,
  356.             0.0104,
  357.             0.0134,
  358.             0.0160
  359.         };

  360.         /*
  361.          * Construct the EDF Instrument Set Stretch Builder
  362.          */

  363.         LatentStateStretchSpec edfStretch = LatentStateStretchBuilder.ForwardFundingStretchSpec (
  364.             "EDF",
  365.             aEDFComp,
  366.             "ForwardRate",
  367.             adblEDFQuote
  368.         );

  369.         /*
  370.          * Construct the Array of Swap Instruments and their Quotes from the given set of parameters
  371.          */

  372.         FixFloatComponent[] aSwapComp = SwapInstrumentsFromMaturityTenor (
  373.             dtSpot,
  374.             strCurrency,
  375.             new java.lang.String[] {
  376.                 "4Y", "5Y", "6Y", "7Y", "8Y", "9Y", "10Y", "11Y", "12Y", "15Y", "20Y", "25Y", "30Y", "40Y", "50Y"
  377.             }
  378.         );

  379.         double[] adblSwapQuote = new double[] {
  380.             0.0166, 0.0206, 0.0241, 0.0269, 0.0292, 0.0311, 0.0326, 0.0340, 0.0351, 0.0375, 0.0393, 0.0402, 0.0407, 0.0409, 0.0409
  381.         };

  382.         /*
  383.          * Construct the Swap Instrument Set Stretch Builder
  384.          */

  385.         LatentStateStretchSpec swapStretch = LatentStateStretchBuilder.ForwardFundingStretchSpec (
  386.             "SWAP",
  387.             aSwapComp,
  388.             "SwapRate",
  389.             adblSwapQuote
  390.         );

  391.         LatentStateStretchSpec[] aStretchSpec = new LatentStateStretchSpec[] {depositStretch, edfStretch, swapStretch};

  392.         /*
  393.          * Set up the Linear Curve Calibrator using the following parameters:
  394.          *  - Cubic Exponential Mixture Basis Spline Set
  395.          *  - Ck = 2, Segment Curvature Penalty = 2
  396.          *  - Quadratic Rational Shape Controller
  397.          *  - Natural Boundary Setting
  398.          */

  399.         LinearLatentStateCalibrator lcc = new LinearLatentStateCalibrator (
  400.             new SegmentCustomBuilderControl (
  401.                 MultiSegmentSequenceBuilder.BASIS_SPLINE_EXPONENTIAL_MIXTURE,
  402.                 new ExponentialMixtureSetParams (
  403.                     new double[] {
  404.                         0.01,
  405.                         0.05,
  406.                         0.25
  407.                     }
  408.                 ),
  409.                 SegmentInelasticDesignControl.Create (
  410.                     2,
  411.                     2
  412.                 ),
  413.                 new ResponseScalingShapeControl (
  414.                     true,
  415.                     new QuadraticRationalShapeControl (0.)
  416.                 ),
  417.                 null
  418.             ),
  419.             BoundarySettings.NaturalStandard(),
  420.             MultiSegmentSequence.CALIBRATE,
  421.             null,
  422.             null
  423.         );

  424.         /*
  425.          * Set up the Global Curve Control parameters as follows:
  426.          *  - Zero Rate Quantification Metric
  427.          *  - Cubic Polynomial Basis Spline Set
  428.          *  - Ck = 2, Segment Curvature Penalty = 2
  429.          *  - Quadratic Rational Shape Controller
  430.          *  - Natural Boundary Setting
  431.          */

  432.         GlobalControlCurveParams gccp = new GlobalControlCurveParams (
  433.             LatentStateStatic.DISCOUNT_QM_ZERO_RATE,
  434.             new SegmentCustomBuilderControl (
  435.                 MultiSegmentSequenceBuilder.BASIS_SPLINE_POLYNOMIAL,
  436.                 new PolynomialFunctionSetParams (4),
  437.                 SegmentInelasticDesignControl.Create (
  438.                     2,
  439.                     2
  440.                 ),
  441.                 new ResponseScalingShapeControl (
  442.                     true,
  443.                     new QuadraticRationalShapeControl (0.)
  444.                 ),
  445.                 null
  446.             ),
  447.             BoundarySettings.NaturalStandard(),
  448.             MultiSegmentSequence.CALIBRATE,
  449.             null,
  450.             null
  451.         );

  452.         /*
  453.          * Set up the Local Curve Control parameters as follows:
  454.          *  - C1 Bessel Monotone Smoothener with no spurious extrema elimination and no monotone filter
  455.          *  - Zero Rate Quantification Metric
  456.          *  - Cubic Polynomial Basis Spline Set
  457.          *  - Ck = 2, Segment Curvature Penalty = 2
  458.          *  - Quadratic Rational Shape Controller
  459.          *  - Natural Boundary Setting
  460.          */

  461.         LocalControlCurveParams lccp = new LocalControlCurveParams (
  462.             LocalMonotoneCkGenerator.C1_BESSEL,
  463.             LatentStateStatic.DISCOUNT_QM_ZERO_RATE,
  464.             new SegmentCustomBuilderControl (
  465.                 MultiSegmentSequenceBuilder.BASIS_SPLINE_POLYNOMIAL,
  466.                 new PolynomialFunctionSetParams (4),
  467.                 SegmentInelasticDesignControl.Create (
  468.                     2,
  469.                     2
  470.                 ),
  471.                 new ResponseScalingShapeControl (
  472.                     true,
  473.                     new QuadraticRationalShapeControl (0.)
  474.                 ),
  475.                 null
  476.             ),
  477.             MultiSegmentSequence.CALIBRATE,
  478.             null,
  479.             null,
  480.             false,
  481.             false
  482.         );

  483.         ValuationParams valParams = new ValuationParams (
  484.             dtSpot,
  485.             dtSpot,
  486.             strCurrency
  487.         );

  488.         /*
  489.          * Construct the Shape Preserving Discount Curve by applying the linear curve calibrator to the array
  490.          *  of Deposit, Futures, and Swap Stretches.
  491.          */

  492.         MergedDiscountForwardCurve dcShapePreserving = ScenarioDiscountCurveBuilder.ShapePreservingDFBuild (
  493.             strCurrency,
  494.             lcc,
  495.             aStretchSpec,
  496.             valParams,
  497.             null,
  498.             null,
  499.             null,
  500.             1.
  501.         );

  502.         /*
  503.          * Construct the Globally Smoothened Discount Curve by applying the linear curve calibrator and the
  504.          *  Global Curve Control parameters to the array of Cash and Swap Stretches and the shape preserving
  505.          *  discount curve.
  506.          */

  507.         MergedDiscountForwardCurve dcGloballySmooth = ScenarioDiscountCurveBuilder.SmoothingGlobalControlBuild (
  508.             dcShapePreserving,
  509.             lcc,
  510.             gccp,
  511.             valParams,
  512.             null,
  513.             null,
  514.             null
  515.         );

  516.         /*
  517.          * Construct the Locally Smoothened Discount Curve by applying the linear curve calibrator and the
  518.          *  Local Curve Control parameters to the array of Cash and Swap Stretches and the shape preserving
  519.          *  discount curve.
  520.          */

  521.         MergedDiscountForwardCurve dcLocallySmooth = ScenarioDiscountCurveBuilder.SmoothingLocalControlBuild (
  522.             dcShapePreserving,
  523.             lcc,
  524.             lccp,
  525.             valParams,
  526.             null,
  527.             null,
  528.             null
  529.         );

  530.         /*
  531.          * Cross-Comparison of the Deposit Calibration Instrument "Rate" metric across the different curve
  532.          *  construction methodologies.
  533.          */

  534.         System.out.println ("\n\t----------------------------------------------------------------");

  535.         System.out.println ("\t----------------------------------------------------------------");

  536.         System.out.println ("\t               DEPOSIT INSTRUMENTS CALIBRATION RECOVERY");

  537.         System.out.println ("\t----------------------------------------------------------------");

  538.         System.out.println ("\t        SHAPE PRESERVING   | SMOOTHING #1  | SMOOTHING #2  |  INPUT QUOTE  ");

  539.         System.out.println ("\t----------------------------------------------------------------");

  540.         System.out.println ("\t----------------------------------------------------------------");

  541.         for (int i = 0; i < aDepositComp.length; ++i)
  542.             System.out.println ("\t[" + aDepositComp[i].maturityDate() + "] = " +
  543.                 FormatUtil.FormatDouble (
  544.                     aDepositComp[i].measureValue (
  545.                         valParams,
  546.                         null,
  547.                         MarketParamsBuilder.Create (dcShapePreserving, null, null, null, null, null, null),
  548.                         null,
  549.                         "Rate"),
  550.                     1, 6, 1.) + "   |   " +
  551.                 FormatUtil.FormatDouble (
  552.                     aDepositComp[i].measureValue (
  553.                         valParams,
  554.                         null,
  555.                         MarketParamsBuilder.Create (dcGloballySmooth, null, null, null, null, null, null),
  556.                         null,
  557.                         "Rate"),
  558.                     1, 6, 1.) + "   |   " +
  559.                 FormatUtil.FormatDouble (
  560.                     aDepositComp[i].measureValue (
  561.                         valParams,
  562.                         null,
  563.                         MarketParamsBuilder.Create (dcLocallySmooth, null, null, null, null, null, null),
  564.                         null,
  565.                         "Rate"),
  566.                     1, 6, 1.) + "   |   " +
  567.                 FormatUtil.FormatDouble (adblDepositQuote[i], 1, 6, 1.)
  568.             );

  569.         /*
  570.          * Cross-Comparison of the Swap Calibration Instrument "Rate" metric across the different curve
  571.          *  construction methodologies.
  572.          */

  573.         System.out.println ("\n\t----------------------------------------------------------------");

  574.         System.out.println ("\t----------------------------------------------------------------");

  575.         System.out.println ("\t               SWAP INSTRUMENTS CALIBRATION RECOVERY");

  576.         System.out.println ("\t----------------------------------------------------------------");

  577.         System.out.println ("\t        SHAPE PRESERVING   | SMOOTHING #1  | SMOOTHING #2  |  INPUT QUOTE  ");

  578.         System.out.println ("\t----------------------------------------------------------------");

  579.         System.out.println ("\t----------------------------------------------------------------");

  580.         for (int i = 0; i < aSwapComp.length; ++i)
  581.             System.out.println ("\t[" + aSwapComp[i].maturityDate() + "] = " +
  582.                 FormatUtil.FormatDouble (
  583.                     aSwapComp[i].measureValue (
  584.                         valParams,
  585.                         null,
  586.                         MarketParamsBuilder.Create (dcShapePreserving, null, null, null, null, null, null),
  587.                         null,
  588.                         "CalibSwapRate"),
  589.                     1, 6, 1.) + "   |   " +
  590.                 /* FormatUtil.FormatDouble (
  591.                     aSwapComp[i].measureValue (
  592.                         new ValuationParams (dtToday, dtToday, "MXN"), null,
  593.                         MarketParamsBuilder.Create (dcGloballySmooth, null, null, null, null, null, null),
  594.                         null,
  595.                         "CalibSwapRate"),
  596.                     1, 6, 1.) + "   |   " + */
  597.                 FormatUtil.FormatDouble (
  598.                     aSwapComp[i].measureValue (
  599.                         valParams,
  600.                         null,
  601.                         MarketParamsBuilder.Create (dcLocallySmooth, null, null, null, null, null, null),
  602.                         null,
  603.                         "CalibSwapRate"),
  604.                     1, 6, 1.) + "   |   " +
  605.                 FormatUtil.FormatDouble (adblSwapQuote[i], 1, 6, 1.)
  606.             );

  607.         /*
  608.          * Cross-Comparison of the Swap Calibration Instrument "Rate" metric across the different curve
  609.          *  construction methodologies for a sequence of bespoke swap instruments.
  610.          */

  611.         CalibratableComponent[] aCC = SwapInstrumentsFromMaturityTenor (
  612.             dtSpot,
  613.             strCurrency,
  614.             new java.lang.String[] {
  615.                 "3Y", "6Y", "9Y", "12Y", "15Y", "18Y", "21Y", "24Y", "27Y", "30Y"
  616.             }
  617.         );

  618.         System.out.println ("\n\t----------------------------------------------------------------");

  619.         System.out.println ("\t----------------------------------------------------------------");

  620.         System.out.println ("\t           BESPOKE SWAPS PAR RATE");

  621.         System.out.println ("\t----------------------------------------------------------------");

  622.         System.out.println ("\t        SHAPE PRESERVING   |  SMOOTHING #1 |  SMOOTHING #2");

  623.         System.out.println ("\t----------------------------------------------------------------");

  624.         System.out.println ("\t----------------------------------------------------------------");

  625.         for (int i = 0; i < aCC.length; ++i)
  626.             System.out.println ("\t[" + aCC[i].maturityDate() + "] = " +
  627.                 FormatUtil.FormatDouble (
  628.                     aCC[i].measureValue (
  629.                         valParams,
  630.                         null,
  631.                         MarketParamsBuilder.Create (dcShapePreserving, null, null, null, null, null, null),
  632.                         null,
  633.                         "CalibSwapRate"
  634.                     ),
  635.                 1, 6, 1.) + "   |   " +
  636.                 /* FormatUtil.FormatDouble (
  637.                     aCC[i].measureValue (new ValuationParams (dtToday, dtToday, "MXN"), null,
  638.                     MarketParamsBuilder.Create (dcGloballySmooth, null, null, null, null, null, null),
  639.                     null,
  640.                     "CalibSwapRate"),
  641.                 1, 6, 1.) + "   |   " + */
  642.                 FormatUtil.FormatDouble (
  643.                     aCC[i].measureValue (
  644.                         valParams,
  645.                         null,
  646.                         MarketParamsBuilder.Create (dcLocallySmooth, null, null, null, null, null, null),
  647.                         null,
  648.                         "CalibSwapRate"
  649.                     ),
  650.                 1, 6, 1.)
  651.             );
  652.     }

  653.     public static final void main (
  654.         final String[] astrArgs)
  655.         throws Exception
  656.     {
  657.         /*
  658.          * Initialize the Credit Analytics Library
  659.          */

  660.         EnvManager.InitEnv ("");

  661.         JulianDate dtSpot = DateUtil.CreateFromYMD (
  662.             2017,
  663.             DateUtil.DECEMBER,
  664.             21
  665.         );

  666.         String strCurrency = "USD";

  667.         ShapePreservingDFZeroSmoothSample (
  668.             dtSpot,
  669.             strCurrency
  670.         );

  671.         EnvManager.TerminateEnv();
  672.     }
  673. }