ShortRateUpdate.java

  1. package org.drip.dynamics.hullwhite;

  2. /*
  3.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  4.  */

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

  78. /**
  79.  * <i>ShortRateUpdate</i> records the Metrics associated with the Evolution of the Instantaneous Short Rate
  80.  * from a Starting to the Terminal Date.
  81.  *
  82.  *  <br><br>
  83.  *  <ul>
  84.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  85.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  86.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/dynamics/README.md">HJM, Hull White, LMM, and SABR Dynamic Evolution Models</a></li>
  87.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/dynamics/hullwhite/README.md">Hull White Latent State Evolution</a></li>
  88.  *  </ul>
  89.  *
  90.  * @author Lakshmi Krishnamurthy
  91.  */

  92. public class ShortRateUpdate extends org.drip.dynamics.evolution.LSQMPointUpdate {
  93.     private double _dblExpectedFinalShortRate = java.lang.Double.NaN;
  94.     private double _dblFinalShortRateVariance = java.lang.Double.NaN;
  95.     private org.drip.state.identifier.FundingLabel _lslFunding = null;

  96.     /**
  97.      * Construct an Instance of ShortRateUpdate
  98.      *
  99.      * @param lslFunding The Funding Latent State Label
  100.      * @param iInitialDate The Initial Date
  101.      * @param iFinalDate The Final Date
  102.      * @param iTargetPointDate The Target Point Date
  103.      * @param dblInitialShortRate The Initial Short Rate
  104.      * @param dblRealizedFinalShortRate The Realized Final Short Rate
  105.      * @param dblExpectedFinalShortRate The Expected Final Short Rate
  106.      * @param dblFinalShortRateVariance The Final Variance of the Short Rate
  107.      * @param dblZeroCouponBondPrice The Zero Coupon Bond Price
  108.      *
  109.      * @return The ShortRateUpdate Instance
  110.      *
  111.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  112.      */

  113.     public static final ShortRateUpdate Create (
  114.         final org.drip.state.identifier.FundingLabel lslFunding,
  115.         final int iInitialDate,
  116.         final int iFinalDate,
  117.         final int iTargetPointDate,
  118.         final double dblInitialShortRate,
  119.         final double dblRealizedFinalShortRate,
  120.         final double dblExpectedFinalShortRate,
  121.         final double dblFinalShortRateVariance,
  122.         final double dblZeroCouponBondPrice)
  123.         throws java.lang.Exception
  124.     {
  125.         org.drip.dynamics.evolution.LSQMPointRecord lrSnapshot = new
  126.             org.drip.dynamics.evolution.LSQMPointRecord();

  127.         if (!lrSnapshot.setQM (lslFunding,
  128.             org.drip.analytics.definition.LatentStateStatic.DISCOUNT_QM_ZERO_RATE,
  129.                 dblRealizedFinalShortRate))
  130.             return null;

  131.         if (!lrSnapshot.setQM (lslFunding,
  132.             org.drip.analytics.definition.LatentStateStatic.DISCOUNT_QM_DISCOUNT_FACTOR,
  133.                 dblZeroCouponBondPrice))
  134.             return null;

  135.         org.drip.dynamics.evolution.LSQMPointRecord lrIncrement = new
  136.             org.drip.dynamics.evolution.LSQMPointRecord();

  137.         if (!lrIncrement.setQM (lslFunding,
  138.             org.drip.analytics.definition.LatentStateStatic.DISCOUNT_QM_ZERO_RATE,
  139.                 dblRealizedFinalShortRate - dblInitialShortRate))
  140.             return null;

  141.         try {
  142.             return new ShortRateUpdate (lslFunding, iInitialDate, iFinalDate, iTargetPointDate, lrSnapshot,
  143.                 lrIncrement, dblExpectedFinalShortRate, dblFinalShortRateVariance);
  144.         } catch (java.lang.Exception e) {
  145.             e.printStackTrace();
  146.         }

  147.         return null;
  148.     }

  149.     private ShortRateUpdate (
  150.         final org.drip.state.identifier.FundingLabel lslFunding,
  151.         final int iInitialDate,
  152.         final int iFinalDate,
  153.         final int iViewDate,
  154.         final org.drip.dynamics.evolution.LSQMPointRecord lrSnapshot,
  155.         final org.drip.dynamics.evolution.LSQMPointRecord lrIncrement,
  156.         final double dblExpectedFinalShortRate,
  157.         final double dblFinalShortRateVariance)
  158.         throws java.lang.Exception
  159.     {
  160.         super (iInitialDate, iFinalDate, iViewDate, lrSnapshot, lrIncrement);

  161.         if (null == (_lslFunding = lslFunding) || !org.drip.numerical.common.NumberUtil.IsValid
  162.             (_dblExpectedFinalShortRate = dblExpectedFinalShortRate) ||
  163.                 !org.drip.numerical.common.NumberUtil.IsValid (_dblFinalShortRateVariance =
  164.                     dblFinalShortRateVariance)) {
  165.             System.out.println (_lslFunding.fullyQualifiedName());

  166.             System.out.println ("Final Short Rate: " + _dblExpectedFinalShortRate);

  167.             System.out.println ("Final Short Rate Variance: " + _dblFinalShortRateVariance);

  168.             throw new java.lang.Exception ("ShortRateUpdate ctr: Invalid Inputs!");
  169.         }
  170.     }

  171.     /**
  172.      * Retrieve the Initial Short Rate
  173.      *
  174.      * @return The Initial Short Rate
  175.      *
  176.      * @throws java.lang.Exception Thrown if the Initial Short Rate is not available
  177.      */

  178.     public double initialShortRate()
  179.         throws java.lang.Exception
  180.     {
  181.         return realizedFinalShortRate() - shortRateIncrement();
  182.     }

  183.     /**
  184.      * Retrieve the Realized Final Short Rate
  185.      *
  186.      * @return The Realized Final Short Rate
  187.      *
  188.      * @throws java.lang.Exception Thrown if the Realized Final Short Rate is not available
  189.      */

  190.     public double realizedFinalShortRate()
  191.         throws java.lang.Exception
  192.     {
  193.         return snapshot().qm (_lslFunding,
  194.             org.drip.analytics.definition.LatentStateStatic.DISCOUNT_QM_ZERO_RATE);
  195.     }

  196.     /**
  197.      * Retrieve the Short Rate Increment
  198.      *
  199.      * @return The Short Rate Increment
  200.      *
  201.      * @throws java.lang.Exception Thrown if the Short Rate Increment is not available
  202.      */

  203.     public double shortRateIncrement()
  204.         throws java.lang.Exception
  205.     {
  206.         return increment().qm (_lslFunding,
  207.             org.drip.analytics.definition.LatentStateStatic.DISCOUNT_QM_ZERO_RATE);
  208.     }

  209.     /**
  210.      * Retrieve the Expected Final Short Rate
  211.      *
  212.      * @return The Expected Final Short Rate
  213.      */

  214.     public double expectedFinalShortRate()
  215.     {
  216.         return _dblExpectedFinalShortRate;
  217.     }

  218.     /**
  219.      * Retrieve the Final Short Rate Variance
  220.      *
  221.      * @return The Final Short Rate Variance
  222.      */

  223.     public double finalShortRateVariance()
  224.     {
  225.         return _dblFinalShortRateVariance;
  226.     }

  227.     /**
  228.      * Compute the Zero Coupon Bond Price
  229.      *
  230.      * @param dblFinalInitialZeroRatio The Final-to-Initial Zero-Coupon Bond Price Ratio
  231.      *
  232.      * @return The Zero Coupon Bond Price
  233.      *
  234.      * @throws java.lang.Exception Thrown if the Zero Coupon Bond Price cannot be computed
  235.      */

  236.     public double zeroCouponBondPrice (
  237.         final double dblFinalInitialZeroRatio)
  238.         throws java.lang.Exception
  239.     {
  240.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblFinalInitialZeroRatio))
  241.             throw new java.lang.Exception ("ShortRateUpdate::zeroCouponBondPrice => Invalid Inputs");

  242.         return dblFinalInitialZeroRatio * snapshot().qm (_lslFunding,
  243.             org.drip.analytics.definition.LatentStateStatic.DISCOUNT_QM_DISCOUNT_FACTOR);
  244.     }
  245. }