HaganWestForwardInterpolator.java

  1. package org.drip.sample.funding;

  2. import org.drip.function.r1tor1.LinearRationalShapeControl;
  3. import org.drip.numerical.common.FormatUtil;
  4. import org.drip.service.env.EnvManager;
  5. import org.drip.spline.basis.ExponentialTensionSetParams;
  6. import org.drip.spline.params.*;
  7. import org.drip.spline.pchip.*;
  8. import org.drip.spline.stretch.*;

  9. /*
  10.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  11.  */

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

  77. /**
  78.  * <i>HaganWestForwardInterpolator</i> illustrates using the Hagan and West (2006) Estimator. It provides the
  79.  * following functionality:
  80.  *  
  81.  * <br><br>
  82.  *  <ul>
  83.  *      <li>
  84.  *          Set up the Predictor ordinates and the response values.
  85.  *      </li>
  86.  *      <li>
  87.  *          Construct the rational linear shape control with the specified tension.
  88.  *      </li>
  89.  *      <li>
  90.  *          Create the Segment Inelastic design using the Ck and Curvature Penalty Derivatives.
  91.  *      </li>
  92.  *      <li>
  93.  *          Build the Array of Segment Custom Builder Control Parameters of the KLK Hyperbolic Tension Basis
  94.  *              Type, the tension, the segment inelastic design control, and the shape controller.
  95.  *      </li>
  96.  *      <li>
  97.  *          Setup the monotone convex stretch using the above settings, and with no linear inference, no
  98.  *              spurious extrema, or no monotone filtering applied.
  99.  *      </li>
  100.  *      <li>
  101.  *          Setup the monotone convex stretch using the above settings, and with linear inference, no
  102.  *              spurious extrema, or no monotone filtering applied.
  103.  *      </li>
  104.  *      <li>
  105.  *          Compute and display the monotone convex output with the linear forward state.
  106.  *      </li>
  107.  *      <li>
  108.  *          Compute and display the monotone convex output with the harmonic forward state.
  109.  *      </li>
  110.  *  </ul>
  111.  *  
  112.  * <br><br>
  113.  *  <ul>
  114.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/AnalyticsCore.md">Analytics Core Module</a></li>
  115.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics Library</a></li>
  116.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/README.md">Sample</a></li>
  117.  *      <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>
  118.  *  </ul>
  119.  * <br><br>
  120.  *
  121.  * @author Lakshmi Krishnamurthy
  122.  */

  123. public class HaganWestForwardInterpolator {

  124.     /*
  125.      * Display the monotone convex response value pre- and post- positivity enforcement.
  126.      *
  127.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  128.      */

  129.     private static void DisplayOP (
  130.         final MonotoneConvexHaganWest mchw,
  131.         final MultiSegmentSequence mss,
  132.         final double[] adblTime)
  133.         throws Exception
  134.     {
  135.         /*
  136.          * Compare the stretch response values with that of the Monotone Convex across the range of the
  137.          *  predictor ordinates pre-positivity enforcement.
  138.          */

  139.         double dblTimeBegin = 0.;
  140.         double dblTimeFinish = 30.;
  141.         double dblTimeDelta = 3.00;
  142.         double dblTime = dblTimeBegin;

  143.         while (dblTime <= dblTimeFinish) {
  144.             System.out.println ("\t\tResponse[" +
  145.                 FormatUtil.FormatDouble (dblTime, 2, 2, 1.) + "]: " +
  146.                 FormatUtil.FormatDouble (mchw.evaluate (dblTime), 1, 6, 1.) + " | " +
  147.                 FormatUtil.FormatDouble (mss.responseValue (dblTime), 1, 6, 1.)
  148.             );

  149.             dblTime += dblTimeDelta;
  150.         }

  151.         /*
  152.          * Verify if the monotone convex positivity enforcement succeeded
  153.          */

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

  155.         System.out.println ("\t\tPositivity enforced? " + mchw.enforcePositivity());

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

  157.         dblTime = dblTimeBegin;

  158.         /*
  159.          * Compare the stretch response values with that of the Monotone Convex across the range of the
  160.          *  predictor ordinates post-positivity enforcement.
  161.          */

  162.         while (dblTime <= dblTimeFinish) {
  163.             System.out.println ("\t\tPositivity Enforced Response[" +
  164.                 FormatUtil.FormatDouble (dblTime, 2, 2, 1.) + "]: " +
  165.                 FormatUtil.FormatDouble (mchw.evaluate (dblTime), 1, 6, 1.) + " | " +
  166.                 FormatUtil.FormatDouble (mss.responseValue (dblTime), 1, 6, 1.)
  167.             );

  168.             dblTime += dblTimeDelta;
  169.         }
  170.     }

  171.     /*
  172.      * This sample demonstrates the construction and usage of the Monotone Hagan West Functionality. It shows
  173.      *  the following:
  174.      *  - Set up the Predictor ordinates and the response values..
  175.      *  - Construct the rational linear shape control with the specified tension.
  176.      *  - Create the Segment Inelastic design using the Ck and Curvature Penalty Derivatives.
  177.      *  - Build the Array of Segment Custom Builder Control Parameters of the KLK Hyperbolic Tension Basis
  178.      *      Type, the tension, the segment inelastic design control, and the shape controller.
  179.      *  - Setup the monotone convex stretch using the above settings, and with no linear inference, no
  180.      *      spurious extrema, or no monotone filtering applied.
  181.      *  - Setup the monotone convex stretch using the above settings, and with linear inference, no spurious
  182.      *      extrema, or no monotone filtering applied.
  183.      *  - Compute and display the monotone convex output with the linear forward state.
  184.      *  - Compute and display the monotone convex output with the harmonic forward state.
  185.      *
  186.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  187.      */

  188.     private static final void MonotoneHaganWestInterpolatorSample()
  189.         throws Exception
  190.     {
  191.         /*
  192.          * Set up the Predictor ordinates and the response values.
  193.          */

  194.         double[] adblTime = new double[] {
  195.             0., 0.10, 1.0, 4.0, 9.0, 20.0, 30.0
  196.         };
  197.         double[] adblForwardRate = new double[] {
  198.             1.008, 1.073, 1.221, 1.878, 2.226, 2.460
  199.         };

  200.         /*
  201.          * Construct the rational linear shape control with the specified tension.
  202.          */

  203.         double dblShapeControllerTension = 1.;

  204.         ResponseScalingShapeControl rssc = new ResponseScalingShapeControl (
  205.             false,
  206.             new LinearRationalShapeControl (dblShapeControllerTension)
  207.         );

  208.         int iK = 2;
  209.         int iCurvaturePenaltyDerivativeOrder = 2;

  210.         /*
  211.          * Create the Segment Inelastic design using the Ck and Curvature Penalty Derivatives.
  212.          */

  213.         SegmentInelasticDesignControl sdic = SegmentInelasticDesignControl.Create (
  214.             iK,
  215.             iCurvaturePenaltyDerivativeOrder
  216.         );

  217.         /*
  218.          * Build the Array of Segment Custom Builder Control Parameters of the KLK Hyperbolic Tension Basis
  219.          *  Type, the tension, the segment inelastic design control, and the shape controller.
  220.          */

  221.         double dblKLKTension = 1.;

  222.         SegmentCustomBuilderControl scbc = new SegmentCustomBuilderControl (
  223.             MultiSegmentSequenceBuilder.BASIS_SPLINE_KLK_HYPERBOLIC_TENSION,
  224.             new ExponentialTensionSetParams (dblKLKTension),
  225.             sdic,
  226.             rssc,
  227.             null
  228.         );

  229.         SegmentCustomBuilderControl[] aSCBC = new SegmentCustomBuilderControl[adblForwardRate.length];

  230.         for (int i = 0; i < adblForwardRate.length; ++i)
  231.             aSCBC[i] = scbc;

  232.         /*
  233.          * Setup the monotone convex stretch using the above settings, and with no linear inference, no
  234.          *  spurious extrema, or no monotone filtering applied.
  235.          */

  236.         MultiSegmentSequence mssLinear = LocalControlStretchBuilder.CreateMonotoneConvexStretch (
  237.             "MSS_LINEAR",
  238.             adblTime,
  239.             adblForwardRate,
  240.             aSCBC,
  241.             null,
  242.             MultiSegmentSequence.CALIBRATE,
  243.             false,
  244.             false,
  245.             false
  246.         );

  247.         /*
  248.          * Setup the monotone convex stretch using the above settings, and with linear inference, no
  249.          *  spurious extrema, or no monotone filtering applied.
  250.          */

  251.         MultiSegmentSequence mssHarmonic = LocalControlStretchBuilder.CreateMonotoneConvexStretch (
  252.             "MSS_HARMONIC",
  253.             adblTime,
  254.             adblForwardRate,
  255.             aSCBC,
  256.             null,
  257.             MultiSegmentSequence.CALIBRATE,
  258.             true,
  259.             false,
  260.             false
  261.         );

  262.         /*
  263.          * Compute and display the monotone convex output with the linear forward state.
  264.          */

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

  266.         System.out.println ("\t     MONOTONE CONVEX HAGAN WEST WITH LINEAR FORWARD STATE");

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

  268.         /*
  269.          * Compute and display the monotone convex output with the harmonic forward state.
  270.          */

  271.         DisplayOP (
  272.             MonotoneConvexHaganWest.Create (
  273.                 adblTime,
  274.                 adblForwardRate,
  275.                 false
  276.             ),
  277.             mssLinear,
  278.             adblTime
  279.         );

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

  281.         System.out.println ("\t     MONOTONE CONVEX HAGAN WEST WITH HARMONIC FORWARD STATE");

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

  283.         DisplayOP (
  284.             MonotoneConvexHaganWest.Create (
  285.                 adblTime,
  286.                 adblForwardRate,
  287.                 true
  288.             ),
  289.             mssHarmonic,
  290.             adblTime
  291.         );
  292.     }

  293.     public static final void main (
  294.         final String[] astrArgs)
  295.         throws Exception
  296.     {
  297.         EnvManager.InitEnv ("");

  298.         MonotoneHaganWestInterpolatorSample();

  299.         EnvManager.TerminateEnv();
  300.     }
  301. }