KnotInsertionTensionEstimator.java

  1.    
  2. package org.drip.sample.stretch;

  3. import org.drip.function.r1tor1.*;
  4. import org.drip.numerical.common.FormatUtil;
  5. import org.drip.spline.basis.*;
  6. import org.drip.spline.params.*;
  7. import org.drip.spline.stretch.*;

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

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

  56. /**
  57.  * KnotInsertionTensionEstimator demonstrates the Stretch builder and usage API. It shows the following:
  58.  *
  59.  *  - Construction of segment control parameters - polynomial (regular/Bernstein) segment control,
  60.  *      exponential/hyperbolic tension segment control, Kaklis-Pandelis tension segment control.
  61.  *  - Tension Basis Spline Test using the specified predictor/response set and the array of segment custom
  62.  *      builder control parameters.
  63.  *  - Complete the full tension stretch estimation sample test.
  64.  *
  65.  * @author Lakshmi Krishnamurthy
  66.  */

  67. public class KnotInsertionTensionEstimator {

  68.     /*
  69.      * Build KLK Exponential Tension Segment Control Parameters
  70.      *
  71.      *  WARNING: Insufficient Error Checking, so use caution
  72.      */

  73.     private static final SegmentCustomBuilderControl KLKExponentialTensionSegmentControlParams (
  74.         final double dblTension,
  75.         final SegmentInelasticDesignControl sdic,
  76.         final ResponseScalingShapeControl rssc)
  77.         throws Exception
  78.     {
  79.         return new SegmentCustomBuilderControl (
  80.             MultiSegmentSequenceBuilder.BASIS_SPLINE_KLK_EXPONENTIAL_TENSION,
  81.             new ExponentialTensionSetParams (dblTension),
  82.             sdic,
  83.             rssc,
  84.             null
  85.         );
  86.     }

  87.     /*
  88.      * Build KLK Hyperbolic Tension Segment Control Parameters
  89.      *
  90.      *  WARNING: Insufficient Error Checking, so use caution
  91.      */

  92.     private static final SegmentCustomBuilderControl KLKHyperbolicTensionSegmentControlParams (
  93.         final double dblTension,
  94.         final SegmentInelasticDesignControl sdic,
  95.         final ResponseScalingShapeControl rssc)
  96.         throws Exception
  97.     {
  98.         return new SegmentCustomBuilderControl (
  99.             MultiSegmentSequenceBuilder.BASIS_SPLINE_KLK_HYPERBOLIC_TENSION,
  100.             new ExponentialTensionSetParams (dblTension),
  101.             sdic,
  102.             rssc,
  103.             null
  104.         );
  105.     }

  106.     /*
  107.      * Build KLK Rational Linear Tension Segment Control Parameters
  108.      *
  109.      *  WARNING: Insufficient Error Checking, so use caution
  110.      */

  111.     private static final SegmentCustomBuilderControl KLKRationalLinearTensionSegmentControlParams (
  112.         final double dblTension,
  113.         final SegmentInelasticDesignControl sdic,
  114.         final ResponseScalingShapeControl rssc)
  115.         throws Exception
  116.     {
  117.         return new SegmentCustomBuilderControl (
  118.             MultiSegmentSequenceBuilder.BASIS_SPLINE_KLK_RATIONAL_LINEAR_TENSION,
  119.             new ExponentialTensionSetParams (dblTension),
  120.             sdic,
  121.             rssc,
  122.             null
  123.         );
  124.     }

  125.     /*
  126.      * Build KLK Rational Quadratic Tension Segment Control Parameters
  127.      *
  128.      *  WARNING: Insufficient Error Checking, so use caution
  129.      */

  130.     private static final SegmentCustomBuilderControl KLKRationalQuadraticTensionSegmentControlParams (
  131.         final double dblTension,
  132.         final SegmentInelasticDesignControl sdic,
  133.         final ResponseScalingShapeControl rssc)
  134.         throws Exception
  135.     {
  136.         return new SegmentCustomBuilderControl (
  137.             MultiSegmentSequenceBuilder.BASIS_SPLINE_KLK_RATIONAL_QUADRATIC_TENSION,
  138.             new ExponentialTensionSetParams (dblTension),
  139.             sdic,
  140.             rssc,
  141.             null
  142.         );
  143.     }

  144.     /*
  145.      * Tension Basis Spline Test using the specified predictor/response set and the array of segment custom
  146.      *  builder control parameters. It consists of the following steps:
  147.      *  - Array of Segment Builder Parameters - one per segment
  148.      *  - Construct a Stretch instance
  149.      *  - Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian
  150.      *  - Construct a new Stretch instance by inserting a pair of of predictor/response knots
  151.      *  - Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian
  152.      *
  153.      *  WARNING: Insufficient Error Checking, so use caution
  154.      */

  155.     private static final void BasisSplineStretchTest (
  156.         final double[] adblX,
  157.         final double[] adblY,
  158.         final SegmentCustomBuilderControl scbc)
  159.         throws Exception
  160.     {
  161.         double dblX = 1.;
  162.         double dblXMax = 10.;

  163.         /*
  164.          * Array of Segment Builder Parameters - one per segment
  165.          */

  166.         SegmentCustomBuilderControl[] aSCBC = new SegmentCustomBuilderControl[adblX.length - 1];

  167.         for (int i = 0; i < adblX.length - 1; ++i)
  168.             aSCBC[i] = scbc;

  169.         /*
  170.          * Construct a Stretch instance
  171.          */

  172.         MultiSegmentSequence mss = MultiSegmentSequenceBuilder.CreateCalibratedStretchEstimator (
  173.             "SPLINE_STRETCH",
  174.             adblX, // predictors
  175.             adblY, // responses
  176.             aSCBC, // Basis Segment Builder parameters
  177.             null,
  178.             BoundarySettings.NaturalStandard(), // Boundary Condition - Natural
  179.             MultiSegmentSequence.CALIBRATE // Calibrate the Stretch predictors to the responses
  180.         );

  181.         /*
  182.          * Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian
  183.          */

  184.         while (dblX <= dblXMax) {
  185.             System.out.println ("Y[" + dblX + "] " + FormatUtil.FormatDouble (mss.responseValue (dblX), 1, 2, 1.) + " | " +
  186.                 mss.monotoneType (dblX));

  187.             System.out.println ("\tJacobian Y[" + dblX + "]=" + mss.jackDResponseDCalibrationInput (dblX, 1).displayString());

  188.             dblX += 1.;
  189.         }

  190.         System.out.println ("\t\tSPLINE_STRETCH DPE: " + mss.curvatureDPE());

  191.         /*
  192.          * Construct a new Stretch instance by inserting a pair of of predictor/response knots
  193.          */

  194.         MultiSegmentSequence mssInsert = MultiSegmentSequenceModifier.InsertKnot (mss,
  195.             9.,
  196.             10.,
  197.             BoundarySettings.NaturalStandard(), // Boundary Condition - Natural
  198.             MultiSegmentSequence.CALIBRATE // Calibrate the Stretch predictors to the responses
  199.         );

  200.         dblX = 1.;

  201.         /*
  202.          * Estimate, compute the sgement-by-segment monotonicty and the Stretch Jacobian
  203.          */

  204.         while (dblX <= dblXMax) {
  205.             System.out.println ("Inserted Y[" + dblX + "] " + FormatUtil.FormatDouble (mssInsert.responseValue (dblX), 1, 2, 1.)
  206.                 + " | " + mssInsert.monotoneType (dblX));

  207.             dblX += 1.;
  208.         }

  209.         System.out.println ("\t\tSPLINE_STRETCH_INSERT DPE: " + mssInsert.curvatureDPE());
  210.     }

  211.     /*
  212.      * Complete the full tension stretch estimation sample test by doing the following:
  213.      *  - Composing the array of predictor/responses
  214.      *  - Construct a rational shape controller with the desired shape controller tension
  215.      *  - Construct the Segment Inelastic Parameter that is C2 (iK = 2 sets it to C2), with Second Order
  216.      *      Curvature Penalty Derivative, and without constraint
  217.      *  - KLK Hyperbolic Tension Basis Spline Stretch Test
  218.      *  - KLK Exponential Tension Basis Spline Stretch Test
  219.      *  - KLK Rational Linear Tension Basis Spline Stretch Test
  220.      *  - KLK Rational Quadratic Tension Basis Spline Stretch Test
  221.      */

  222.     public static final void TensionStretchEstimationSample()
  223.         throws Exception
  224.     {
  225.         /*
  226.          * X predictors
  227.          */

  228.         double[] adblX = new double[] { 1.00,  1.50,  2.00, 3.00, 4.00, 5.00, 6.50, 8.00, 10.00};

  229.         /*
  230.          * Y responses
  231.          */

  232.         double[] adblY = new double[] {25.00, 20.25, 16.00, 9.00, 4.00, 1.00, 0.25, 4.00, 16.00};

  233.         /*
  234.          * Construct a rational shape controller with the shape controller tension of 1.
  235.          */

  236.         double dblShapeControllerTension = 1.;

  237.         ResponseScalingShapeControl rssc = new ResponseScalingShapeControl (
  238.             false,
  239.             new LinearRationalShapeControl (dblShapeControllerTension)
  240.         );

  241.         /*
  242.          * Construct the Segment Inelastic Parameter that is C2 (iK = 2 sets it to C2), with Second Order
  243.          *  Curvature Penalty Derivative, and without constraint
  244.          */

  245.         int iK = 2;
  246.         int iCurvaturePenaltyDerivativeOrder= 2;

  247.         SegmentInelasticDesignControl segParams = SegmentInelasticDesignControl.Create (
  248.             iK,
  249.             iCurvaturePenaltyDerivativeOrder
  250.         );

  251.         double dblKLKTension = 1.;

  252.         /*
  253.          * KLK Hyperbolic Tension Basis Spline Stretch Test
  254.          */

  255.         System.out.println (" \n---------- \n KLK HYPERBOLIC TENSION \n ---------- \n");

  256.         BasisSplineStretchTest (
  257.             adblX,
  258.             adblY,
  259.             KLKHyperbolicTensionSegmentControlParams (
  260.                 dblKLKTension,
  261.                 segParams,
  262.                 rssc
  263.             )
  264.         );

  265.         /*
  266.          * KLK Exponential Tension Basis Spline Stretch Test
  267.          */

  268.         System.out.println (" \n---------- \n KLK EXPONENTIAL TENSION \n ---------- \n");

  269.         BasisSplineStretchTest (
  270.             adblX,
  271.             adblY,
  272.             KLKExponentialTensionSegmentControlParams (
  273.                 dblKLKTension,
  274.                 segParams,
  275.                 rssc
  276.             )
  277.         );

  278.         /*
  279.          * KLK Rational Linear Tension Basis Spline Stretch Test
  280.          */

  281.         System.out.println (" \n---------- \n KLK RATIONAL LINEAR TENSION \n ---------- \n");

  282.         BasisSplineStretchTest (
  283.             adblX,
  284.             adblY,
  285.             KLKRationalLinearTensionSegmentControlParams (
  286.                 dblKLKTension,
  287.                 segParams,
  288.                 rssc
  289.             )
  290.         );

  291.         /*
  292.          * KLK Rational Quadratic Tension Basis Spline Stretch Test
  293.          */

  294.         System.out.println (" \n---------- \n KLK RATIONAL QUADRATIC TENSION \n ---------- \n");

  295.         BasisSplineStretchTest (
  296.             adblX,
  297.             adblY,
  298.             KLKRationalQuadraticTensionSegmentControlParams (
  299.                 dblKLKTension,
  300.                 segParams,
  301.                 rssc
  302.             )
  303.         );
  304.     }

  305.     public static final void main (
  306.         final String[] astrArgs)
  307.         throws Exception
  308.     {
  309.         TensionStretchEstimationSample();
  310.     }
  311. }