ForwardVolatilityState.java

  1. package org.drip.template.state;

  2. import org.drip.analytics.date.*;
  3. import org.drip.numerical.common.FormatUtil;
  4. import org.drip.service.env.EnvManager;
  5. import org.drip.service.template.LatentMarketStateBuilder;
  6. import org.drip.state.discount.MergedDiscountForwardCurve;
  7. import org.drip.state.identifier.ForwardLabel;
  8. import org.drip.state.volatility.VolatilityCurve;

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

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

  85. /**
  86.  * <i>ForwardVolatilityState</i> sets up the Calibration and the Construction of the Volatility Latent State
  87.  * for the Forward Latent State and examine the Emitted Metrics.
  88.  *
  89.  *  <br><br>
  90.  *  <ul>
  91.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  92.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  93.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/template/README.md">Pricing/Risk Templates for Fixed Income Component Products</a></li>
  94.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/template/state/README.md">Standard Latent State Construction Template</a></li>
  95.  *  </ul>
  96.  * <br><br>
  97.  *
  98.  * @author Lakshmi Krishnamurthy
  99.  */

  100. public class ForwardVolatilityState {

  101.     public static final void main (
  102.         final String[] astrArgs)
  103.         throws Exception
  104.     {
  105.         EnvManager.InitEnv ("");

  106.         String strFRATenor = "3M";
  107.         String strCurrency = "GBP";

  108.         JulianDate dtSpot = DateUtil.CreateFromYMD (
  109.             2017,
  110.             DateUtil.DECEMBER,
  111.             19
  112.         );

  113.         ForwardLabel forwardLabel = ForwardLabel.Create (
  114.             strCurrency,
  115.             strFRATenor
  116.         );

  117.         MergedDiscountForwardCurve dcFunding = LatentMarketStateBuilder.SmoothFundingCurve (
  118.             dtSpot,
  119.             strCurrency,
  120.             new String[] {
  121.                  "30D",
  122.                  "60D",
  123.                  "91D",
  124.                 "182D",
  125.                 "273D"
  126.             },
  127.             new double[] {
  128.                 0.0668750,  //  30D
  129.                 0.0675000,  //  60D
  130.                 0.0678125,  //  91D
  131.                 0.0712500,  // 182D
  132.                 0.0750000   // 273D
  133.             },
  134.             "ForwardRate",
  135.             null,
  136.             "ForwardRate",
  137.             new String[] {
  138.                 "2Y",
  139.                 "3Y",
  140.                 "4Y",
  141.                 "5Y",
  142.                 "7Y",
  143.                 "10Y"
  144.             },
  145.             new double[] {
  146.                 0.08265,    //  2Y
  147.                 0.08550,    //  3Y
  148.                 0.08655,    //  4Y
  149.                 0.08770,    //  5Y
  150.                 0.08910,    //  7Y
  151.                 0.08920     // 10Y
  152.             },
  153.             "SwapRate"
  154.         );

  155.         String[] astrMaturityTenor = new String[] {
  156.             "01Y",
  157.             "02Y",
  158.             "03Y",
  159.             "04Y",
  160.             "05Y",
  161.             "07Y",
  162.             "10Y"
  163.         };

  164.         double[] adblStrike = new double[] {
  165.             0.0788, //  "1Y",
  166.             0.0839, //  "2Y",
  167.             0.0864, //  "3Y",
  168.             0.0869, //  "4Y",
  169.             0.0879, //  "5Y",
  170.             0.0890, //  "7Y",
  171.             0.0889  // "10Y"
  172.         };

  173.         double[] adblPrice = new double[] {
  174.             0.0017, //  "1Y",
  175.             0.0132, //  "2Y",
  176.             0.0234, //  "3Y",
  177.             0.0343, //  "4Y",
  178.             0.0491, //  "5Y",
  179.             0.0868, //  "7Y"
  180.             0.1175  // "10Y"
  181.         };

  182.         VolatilityCurve vcForward = LatentMarketStateBuilder.ForwardRateVolatilityCurve (
  183.             dtSpot,
  184.             forwardLabel,
  185.             true,
  186.             astrMaturityTenor,
  187.             adblStrike,
  188.             adblPrice,
  189.             "Price",
  190.             dcFunding,
  191.             dcFunding.nativeForwardCurve (strFRATenor)
  192.         );

  193.         String strLatentStateLabel = vcForward.label().fullyQualifiedName();

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

  195.         for (int i = 0; i < astrMaturityTenor.length; ++i)
  196.             System.out.println (
  197.                 "\t||  " + strLatentStateLabel + " |  CAP PRICE  | " +
  198.                 astrMaturityTenor[i] + " | " + FormatUtil.FormatDouble (adblPrice[i], 1, 4, 1.) +
  199.                 " | Forward Implied Vol | " +
  200.                 FormatUtil.FormatDouble (vcForward.impliedVol (astrMaturityTenor[i]), 2, 2, 100.) +
  201.                 "% ||"
  202.             );

  203.         System.out.println ("\t||-----------------------------------------------------------------------------||\n");
  204.     }
  205. }