FlatForwardVolatilityCurve.java

  1. package org.drip.state.nonlinear;

  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>FlatForwardVolatilityCurve</i> manages the Volatility Latent State, using the Forward Volatility as the
  80.  * State Response Representation.
  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/state/README.md">Latent State Inference and Creation Utilities</a></li>
  87.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/state/nonlinear/README.md">Nonlinear (i.e., Boot) Latent State Construction</a></li>
  88.  *  </ul>
  89.  * <br><br>
  90.  *
  91.  * @author Lakshmi Krishnamurthy
  92.  */

  93. public class FlatForwardVolatilityCurve extends org.drip.state.volatility.ExplicitBootVolatilityCurve {
  94.     private int[] _aiPillarDate = null;
  95.     private double[] _adblImpliedVolatility = null;

  96.     /**
  97.      * FlatForwardVolatilityCurve Constructor
  98.      *
  99.      * @param iEpochDate Epoch Date
  100.      * @param label Volatility Label
  101.      * @param strCurrency Currency
  102.      * @param aiPillarDate Array of the Pillar Dates
  103.      * @param adblImpliedVolatility Array of the corresponding Implied Volatility Nodes
  104.      *
  105.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  106.      */

  107.     public FlatForwardVolatilityCurve (
  108.         final int iEpochDate,
  109.         final org.drip.state.identifier.VolatilityLabel label,
  110.         final java.lang.String strCurrency,
  111.         final int[] aiPillarDate,
  112.         final double[] adblImpliedVolatility)
  113.         throws java.lang.Exception
  114.     {
  115.         super (iEpochDate, label, strCurrency);

  116.         if (null == (_aiPillarDate = aiPillarDate) || null == (_adblImpliedVolatility =
  117.             adblImpliedVolatility))
  118.             throw new java.lang.Exception ("FlatForwardVolatilityCurve ctr => Invalid Inputs");

  119.         int iNumPillar = _aiPillarDate.length;

  120.         if (0 == iNumPillar || iNumPillar != _adblImpliedVolatility.length)
  121.             throw new java.lang.Exception ("FlatForwardVolatilityCurve ctr => Invalid Inputs");
  122.     }

  123.     @Override public double impliedVol (
  124.         final int iDate)
  125.         throws java.lang.Exception
  126.     {
  127.         if (iDate <= _aiPillarDate[0]) return _adblImpliedVolatility[0];

  128.         int iNumPillar = _adblImpliedVolatility.length;

  129.         for (int i = 1; i < iNumPillar; ++i) {
  130.             if (_aiPillarDate[i - 1] <= iDate && _aiPillarDate[i] >= iDate)
  131.                 return _adblImpliedVolatility[i];
  132.         }

  133.         return _adblImpliedVolatility[iNumPillar - 1];
  134.     }

  135.     @Override public double node (
  136.         final int iDate)
  137.         throws java.lang.Exception
  138.     {
  139.         return 0.;
  140.     }

  141.     @Override public double vol (
  142.         final int iDate)
  143.         throws java.lang.Exception
  144.     {
  145.         return node (iDate);
  146.     }

  147.     @Override public double nodeDerivative (
  148.         final int iDate,
  149.         final int iOrder)
  150.         throws java.lang.Exception
  151.     {
  152.         org.drip.function.definition.R1ToR1 au = new org.drip.function.definition.R1ToR1 (null) {
  153.             @Override public double evaluate (
  154.                 double dblX)
  155.                 throws java.lang.Exception
  156.             {
  157.                 return node ((int) dblX);
  158.             }
  159.         };

  160.         return au.derivative (iDate, iOrder);
  161.     }

  162.     @Override public boolean setNodeValue (
  163.         final int iNodeIndex,
  164.         final double dblValue)
  165.     {
  166.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblValue) || iNodeIndex >
  167.             _adblImpliedVolatility.length)
  168.             return false;

  169.         for (int i = iNodeIndex; i < _adblImpliedVolatility.length; ++i)
  170.             _adblImpliedVolatility[i] = dblValue;

  171.         return true;
  172.     }

  173.     @Override public boolean bumpNodeValue (
  174.         final int iNodeIndex,
  175.         final double dblValue)
  176.     {
  177.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblValue) || iNodeIndex >
  178.             _adblImpliedVolatility.length)
  179.             return false;

  180.         for (int i = iNodeIndex; i < _adblImpliedVolatility.length; ++i)
  181.             _adblImpliedVolatility[i] += dblValue;

  182.         return true;
  183.     }

  184.     @Override public boolean setFlatValue (
  185.         final double dblValue)
  186.     {
  187.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblValue)) return false;

  188.         for (int i = 0; i < _adblImpliedVolatility.length; ++i)
  189.             _adblImpliedVolatility[i] = dblValue;

  190.         return true;
  191.     }
  192. }