PointCoreMetricsDynamics.java

  1. package org.drip.sample.lmm;

  2. import org.drip.analytics.date.JulianDate;
  3. import org.drip.analytics.definition.MarketSurface;
  4. import org.drip.dynamics.lmm.*;
  5. import org.drip.numerical.common.FormatUtil;
  6. import org.drip.sequence.random.*;
  7. import org.drip.service.env.EnvManager;
  8. import org.drip.spline.basis.PolynomialFunctionSetParams;
  9. import org.drip.spline.params.*;
  10. import org.drip.spline.stretch.MultiSegmentSequenceBuilder;
  11. import org.drip.state.creator.*;
  12. import org.drip.state.discount.*;
  13. import org.drip.state.forward.ForwardCurve;
  14. import org.drip.state.identifier.*;

  15. /*
  16.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  17.  */

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

  80. /**
  81.  * <i>PointCoreMetricsDynamics</i> demonstrates the Construction and Usage of the Point LIBOR State Evolver,
  82.  * and the eventual Evolution of the related Core bDiscount/Forward Latent State Quantification Metrics. The
  83.  * References are:
  84.  *  
  85.  * <br><br>
  86.  *  <ul>
  87.  *      <li>
  88.  *          Goldys, B., M. Musiela, and D. Sondermann (1994): Log-normality of Rates and Term Structure
  89.  *              Models, The University of New South Wales.
  90.  *      </li>
  91.  *      <li>
  92.  *          Musiela, M. (1994): Nominal Annual Rates and Log-normal Volatility Structure, The University of
  93.  *              New South Wales.
  94.  *      </li>
  95.  *      <li>
  96.  *          Brace, A., D. Gatarek, and M. Musiela (1997): The Market Model of Interest Rate Dynamics,
  97.  *              Mathematical Finance 7 (2), 127-155.
  98.  *      </li>
  99.  *  </ul>
  100.  *  
  101.  * <br><br>
  102.  *  <ul>
  103.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/AnalyticsCore.md">Analytics Core Module</a></li>
  104.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics Library</a></li>
  105.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/README.md">Sample</a></li>
  106.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/lmm/README.md">LIBOR Market (LMM-BGM Variant) Evolution</a></li>
  107.  *  </ul>
  108.  * <br><br>
  109.  *
  110.  * @author Lakshmi Krishnamurthy
  111.  */

  112. public class PointCoreMetricsDynamics {

  113.     private static final MarketSurface FlatVolatilitySurface (
  114.         final JulianDate dtStart,
  115.         final String strCurrency,
  116.         final double dblFlatVol)
  117.         throws Exception
  118.     {
  119.         return ScenarioMarketSurfaceBuilder.CustomSplineWireSurface (
  120.             "VIEW_TARGET_VOLATILITY_SURFACE",
  121.             dtStart,
  122.             strCurrency,
  123.             new double[] {
  124.                 dtStart.julian(),
  125.                 dtStart.addYears (2).julian(),
  126.                 dtStart.addYears (4).julian(),
  127.                 dtStart.addYears (6).julian(),
  128.                 dtStart.addYears (8).julian(),
  129.                 dtStart.addYears (10).julian()
  130.             },
  131.             new double[] {
  132.                 dtStart.julian(),
  133.                 dtStart.addYears (2).julian(),
  134.                 dtStart.addYears (4).julian(),
  135.                 dtStart.addYears (6).julian(),
  136.                 dtStart.addYears (8).julian(),
  137.                 dtStart.addYears (10).julian()
  138.             },
  139.             new double[][] {
  140.                 {dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol},
  141.                 {dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol},
  142.                 {dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol},
  143.                 {dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol},
  144.                 {dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol},
  145.                 {dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol, dblFlatVol},
  146.             },
  147.             new SegmentCustomBuilderControl (
  148.                 MultiSegmentSequenceBuilder.BASIS_SPLINE_POLYNOMIAL,
  149.                 new PolynomialFunctionSetParams (4),
  150.                 SegmentInelasticDesignControl.Create (
  151.                     2,
  152.                     2
  153.                 ),
  154.                 null,
  155.                 null
  156.             ),
  157.             new SegmentCustomBuilderControl (
  158.                 MultiSegmentSequenceBuilder.BASIS_SPLINE_POLYNOMIAL,
  159.                 new PolynomialFunctionSetParams (4),
  160.                 SegmentInelasticDesignControl.Create (
  161.                     2,
  162.                     2
  163.                 ),
  164.                 null,
  165.                 null
  166.             )
  167.         );
  168.     }

  169.     private static final LognormalLIBORVolatility LLVInstance (
  170.         final int iSpotDate,
  171.         final ForwardLabel forwardLabel,
  172.         final MarketSurface[] aMS,
  173.         final double[][] aadblCorrelation,
  174.         final int iNumFactor)
  175.         throws Exception
  176.     {
  177.         UnivariateSequenceGenerator[] aUSG = new UnivariateSequenceGenerator[aMS.length];

  178.         for (int i = 0; i < aUSG.length; ++i)
  179.             aUSG[i] = new BoxMullerGaussian (
  180.                 0.,
  181.                 1.
  182.             );

  183.         return new LognormalLIBORVolatility (
  184.             iSpotDate,
  185.             forwardLabel,
  186.             aMS,
  187.             new PrincipalFactorSequenceGenerator (
  188.                 aUSG,
  189.                 aadblCorrelation,
  190.                 iNumFactor
  191.             )
  192.         );
  193.     }

  194.     private static final void DisplayRunSnap (
  195.         final BGMPointUpdate bgmRunSnap)
  196.         throws Exception
  197.     {
  198.         System.out.println (
  199.             "\t| [" + new JulianDate (bgmRunSnap.evolutionStartDate()) +
  200.             " -> " + new JulianDate (bgmRunSnap.evolutionFinishDate()) +
  201.             "]  => " + FormatUtil.FormatDouble (bgmRunSnap.libor(), 1, 2, 100.) +
  202.             "% | " + FormatUtil.FormatDouble (bgmRunSnap.liborIncrement(), 2, 0, 10000.) +
  203.             " | " + FormatUtil.FormatDouble (bgmRunSnap.continuousForwardRate(), 1, 2, 100.) +
  204.             "% | " + FormatUtil.FormatDouble (bgmRunSnap.continuousForwardRateIncrement(), 2, 0, 10000.) +
  205.             " | " + FormatUtil.FormatDouble (bgmRunSnap.spotRate(), 1, 2, 100.) +
  206.             "% | " + FormatUtil.FormatDouble (bgmRunSnap.spotRateIncrement(), 2, 0, 10000.) +
  207.             " | " + FormatUtil.FormatDouble (bgmRunSnap.discountFactor(), 1, 2, 100.) +
  208.             " | " + FormatUtil.FormatDouble (bgmRunSnap.discountFactorIncrement(), 2, 0, 10000.) +
  209.             " | " + FormatUtil.FormatDouble (bgmRunSnap.lognormalLIBORVolatility(), 2, 0, 100.) +
  210.             "% | " + FormatUtil.FormatDouble (bgmRunSnap.continuouslyCompoundedForwardVolatility(), 1, 2, 100.) +
  211.             "% | "
  212.         );
  213.     }

  214.     public static final void main (
  215.         final String[] astrArgs)
  216.         throws Exception
  217.     {
  218.         EnvManager.InitEnv ("");

  219.         String strTenor = "3M";
  220.         String strCurrency = "USD";
  221.         double dblFlatVol1 = 0.35;
  222.         double dblFlatVol2 = 0.42;
  223.         double dblFlatVol3 = 0.27;
  224.         double dblZeroRate = 0.02;
  225.         double dblFlatForwardRate = 0.02;
  226.         int iNumRun = 20;

  227.         int[] aiNumFactor = {
  228.             1, 2, 3
  229.         };

  230.         double[][] aadblCorrelation = new double[][] {
  231.             {1.0, 0.1, 0.2},
  232.             {0.1, 1.0, 0.2},
  233.             {0.2, 0.1, 1.0}
  234.         };

  235.         ForwardLabel forwardLabel = ForwardLabel.Create (
  236.             strCurrency,
  237.             strTenor
  238.         );

  239.         FundingLabel fundingLabel = FundingLabel.Standard (
  240.             strCurrency
  241.         );

  242.         JulianDate dtSpot = org.drip.analytics.date.DateUtil.Today();

  243.         MarketSurface[] aMS = new MarketSurface[] {
  244.             FlatVolatilitySurface (
  245.                 dtSpot,
  246.                 strCurrency,
  247.                 dblFlatVol1
  248.             ),
  249.             FlatVolatilitySurface (
  250.                 dtSpot,
  251.                 strCurrency,
  252.                 dblFlatVol2
  253.             ),
  254.             FlatVolatilitySurface (
  255.                 dtSpot,
  256.                 strCurrency,
  257.                 dblFlatVol3
  258.             )
  259.         };

  260.         ForwardCurve fc = ScenarioForwardCurveBuilder.FlatForwardForwardCurve (
  261.             dtSpot,
  262.             forwardLabel,
  263.             dblFlatForwardRate
  264.         );

  265.         MergedDiscountForwardCurve dc = ScenarioDiscountCurveBuilder.ExponentiallyCompoundedFlatRate (
  266.             dtSpot,
  267.             strCurrency,
  268.             dblZeroRate
  269.         );

  270.         int iSpotDate = dtSpot.julian();

  271.         int iViewDate = dtSpot.addTenor ("1Y").julian();

  272.         int iViewTimeIncrement = 1;

  273.         for (int iNumFactor : aiNumFactor) {
  274.             System.out.println ("\n\n\t|----------------------------------------------------------------------------------------------------------|");

  275.             System.out.println ("\t|                                                                                                          |");

  276.             System.out.println ("\t|                             LOG-NORMAL LIBOR EVOLVER                                                     |");

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

  278.             System.out.println ("\t|                                                                                                          |");

  279.             System.out.println ("\t|       Num Factors: " + iNumFactor + "                                                                                     |");

  280.             System.out.println ("\t|       Start Date                                                                                         |");

  281.             System.out.println ("\t|       End Date                                                                                           |");

  282.             System.out.println ("\t|       Adjacent Step LIBOR (%)                                                                            |");

  283.             System.out.println ("\t|       Adjacent Step LIBOR Increment (bp)                                                                 |");

  284.             System.out.println ("\t|       Adjacent Step Continuously Compounded Forward Rate (%)                                             |");

  285.             System.out.println ("\t|       Adjacent Step Continuously Compounded Forward Rate Increment (bp)                                  |");

  286.             System.out.println ("\t|       Adjacent Step Spot Rate (%)                                                                        |");

  287.             System.out.println ("\t|       Adjacent Step Spot Rate Increment (bp)                                                             |");

  288.             System.out.println ("\t|       Adjacent Step Discount Function                                                                    |");

  289.             System.out.println ("\t|       Adjacent Step Discount Function Increment (c)                                                      |");

  290.             System.out.println ("\t|       Log-normal LIBOR Rate Volatility (%)                                                               |");

  291.             System.out.println ("\t|       Continuously Compounded Forward Rate Volatility (%)                                                |");

  292.             System.out.println ("\t|                                                                                                          |");

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

  294.             LognormalLIBORPointEvolver lle = new LognormalLIBORPointEvolver (
  295.                 fundingLabel,
  296.                 forwardLabel,
  297.                 LLVInstance (
  298.                     dtSpot.julian(),
  299.                     forwardLabel,
  300.                     aMS,
  301.                     aadblCorrelation,
  302.                     iNumFactor
  303.                 ),
  304.                 fc,
  305.                 dc
  306.             );

  307.             for (int iRun = 0; iRun < iNumRun; ++iRun)
  308.                 DisplayRunSnap (
  309.                     lle.evolve (
  310.                         iSpotDate,
  311.                         iViewDate,
  312.                         iViewTimeIncrement,
  313.                         null
  314.                     )
  315.                 );

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

  317.             EnvManager.TerminateEnv();
  318.         }
  319.     }
  320. }