OvernightStateShifted.java

  1. package org.drip.template.statebump;

  2. import java.util.Map;

  3. import org.drip.analytics.date.*;
  4. import org.drip.numerical.common.FormatUtil;
  5. import org.drip.param.market.CurveSurfaceQuoteContainer;
  6. import org.drip.param.valuation.ValuationParams;
  7. import org.drip.product.definition.Component;
  8. import org.drip.service.env.EnvManager;
  9. import org.drip.service.template.*;
  10. import org.drip.state.discount.MergedDiscountForwardCurve;

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

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

  87. /**
  88.  * <i>OvernightStateShifted</i> demonstrates the Generation of the Tenor Bumped Overnight Curves.
  89.  *
  90.  *  <br><br>
  91.  *  <ul>
  92.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  93.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  94.  *      <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>
  95.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/template/statebump/README.md">Shifted Latent State Construction Template</a></li>
  96.  *  </ul>
  97.  * <br><br>
  98.  *
  99.  * @author Lakshmi Krishnamurthy
  100.  */

  101. public class OvernightStateShifted {

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

  107.         String strCurrency = "EUR";
  108.         double dblBump = 0.0001;
  109.         boolean bIsBumpProportional = false;

  110.         JulianDate dtSpot = DateUtil.CreateFromYMD (
  111.             2017,
  112.             DateUtil.DECEMBER,
  113.             21
  114.         );

  115.         String[] astrDepositMaturityTenor = new String[] {
  116.             "01D",
  117.             // "02D",
  118.             "03D"
  119.         };

  120.         double[] adblDepositQuote = new double[] {
  121.             0.0004,     // 1D
  122.             // 0.0004,      // 2D
  123.             0.0004      // 3D
  124.         };

  125.         String[] astrShortEndOISMaturityTenor = new String[] {
  126.             "01W",
  127.             "02W",
  128.             "03W",
  129.             "01M"
  130.         };

  131.         double[] adblShortEndOISQuote = new double[] {
  132.             0.00070,    //   1W
  133.             0.00069,    //   2W
  134.             0.00078,    //   3W
  135.             0.00074     //   1M
  136.         };

  137.         String[] astrOISFuturesEffectiveTenor = new String[] {
  138.             "01M",
  139.             "02M",
  140.             "03M",
  141.             "04M",
  142.             "05M"
  143.         };

  144.         String[] astrOISFuturesMaturityTenor = new String[] {
  145.             "1M",
  146.             "1M",
  147.             "1M",
  148.             "1M",
  149.             "1M"
  150.         };

  151.         double[] adblOISFuturesQuote = new double[] {
  152.              0.00046,    //   1M x 1M
  153.              0.00016,    //   2M x 1M
  154.             -0.00007,    //   3M x 1M
  155.             -0.00013,    //   4M x 1M
  156.             -0.00014     //   5M x 1M
  157.         };

  158.         String[] astrLongEndOISMaturityTenor = new String[] {
  159.             "15M",
  160.             "18M",
  161.             "21M",
  162.             "02Y",
  163.             "03Y",
  164.             "04Y",
  165.             "05Y",
  166.             "06Y",
  167.             "07Y",
  168.             "08Y",
  169.             "09Y",
  170.             "10Y",
  171.             "11Y",
  172.             "12Y",
  173.             "15Y",
  174.             "20Y",
  175.             "25Y",
  176.             "30Y"
  177.         };

  178.         double[] adblLongEndOISQuote = new double[] {
  179.             0.00002,    //  15M
  180.             0.00008,    //  18M
  181.             0.00021,    //  21M
  182.             0.00036,    //   2Y
  183.             0.00127,    //   3Y
  184.             0.00274,    //   4Y
  185.             0.00456,    //   5Y
  186.             0.00647,    //   6Y
  187.             0.00827,    //   7Y
  188.             0.00996,    //   8Y
  189.             0.01147,    //   9Y
  190.             0.01280,    //  10Y
  191.             0.01404,    //  11Y
  192.             0.01516,    //  12Y
  193.             0.01764,    //  15Y
  194.             0.01939,    //  20Y
  195.             0.02003,    //  25Y
  196.             0.02038     //  30Y
  197.         };

  198.         Map<String, MergedDiscountForwardCurve> bumpedOvernightCurve = LatentMarketStateBuilder.BumpedOvernightCurve (
  199.             dtSpot,
  200.             strCurrency,
  201.             astrDepositMaturityTenor,
  202.             adblDepositQuote,
  203.             "ForwardRate",
  204.             astrShortEndOISMaturityTenor,
  205.             adblShortEndOISQuote,
  206.             "SwapRate",
  207.             astrOISFuturesEffectiveTenor,
  208.             astrOISFuturesMaturityTenor,
  209.             adblOISFuturesQuote,
  210.             "SwapRate",
  211.             astrLongEndOISMaturityTenor,
  212.             adblLongEndOISQuote,
  213.             "SwapRate",
  214.             LatentMarketStateBuilder.SMOOTH,
  215.             dblBump,
  216.             bIsBumpProportional
  217.         );

  218.         Component[] aDepositComp = OTCInstrumentBuilder.OvernightDeposit (
  219.             dtSpot,
  220.             strCurrency,
  221.             astrDepositMaturityTenor
  222.         );

  223.         Component[] aShortEndOISComp = OTCInstrumentBuilder.OISFixFloat (
  224.             dtSpot,
  225.             strCurrency,
  226.             astrShortEndOISMaturityTenor,
  227.             adblShortEndOISQuote,
  228.             false
  229.         );

  230.         Component[] aOISFuturesComp = OTCInstrumentBuilder.OISFixFloatFutures (
  231.             dtSpot,
  232.             strCurrency,
  233.             astrOISFuturesEffectiveTenor,
  234.             astrOISFuturesMaturityTenor,
  235.             adblOISFuturesQuote,
  236.             false
  237.         );

  238.         Component[] aLongEndOISComp = OTCInstrumentBuilder.OISFixFloat (
  239.             dtSpot,
  240.             strCurrency,
  241.             astrLongEndOISMaturityTenor,
  242.             adblLongEndOISQuote,
  243.             false
  244.         );

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

  246.         ValuationParams valParams = ValuationParams.Spot (dtSpot.julian());

  247.         for (Map.Entry<String, MergedDiscountForwardCurve> meFunding : bumpedOvernightCurve.entrySet()) {
  248.             String strKey = meFunding.getKey();

  249.             if (!strKey.startsWith ("deposit")) continue;

  250.             CurveSurfaceQuoteContainer csqc = new CurveSurfaceQuoteContainer();

  251.             csqc.setFundingState (meFunding.getValue());

  252.             System.out.print ("\t|  [" + meFunding.getKey() + "] => ");

  253.             for (Component comp : aDepositComp)
  254.                 System.out.print (FormatUtil.FormatDouble (
  255.                     comp.measureValue (
  256.                         valParams,
  257.                         null,
  258.                         csqc,
  259.                         null,
  260.                         "ForwardRate"
  261.                     ), 1, 4, 1.) + " |");

  262.             System.out.print ("|\n");
  263.         }

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

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

  266.         for (Map.Entry<String, MergedDiscountForwardCurve> meFunding : bumpedOvernightCurve.entrySet()) {
  267.             String strKey = meFunding.getKey();

  268.             if (!strKey.startsWith ("shortendois")) continue;

  269.             CurveSurfaceQuoteContainer csqc = new CurveSurfaceQuoteContainer();

  270.             csqc.setFundingState (meFunding.getValue());

  271.             System.out.print ("\t|  [" + meFunding.getKey() + "] => ");

  272.             for (Component comp : aShortEndOISComp)
  273.                 System.out.print (FormatUtil.FormatDouble (
  274.                     comp.measureValue (
  275.                         valParams,
  276.                         null,
  277.                         csqc,
  278.                         null,
  279.                         "SwapRate"
  280.                     ), 1, 4, 1.) + " |");

  281.             System.out.print ("|\n");
  282.         }

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

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

  285.         for (Map.Entry<String, MergedDiscountForwardCurve> meFunding : bumpedOvernightCurve.entrySet()) {
  286.             String strKey = meFunding.getKey();

  287.             if (!strKey.startsWith ("oisfutures")) continue;

  288.             CurveSurfaceQuoteContainer csqc = new CurveSurfaceQuoteContainer();

  289.             csqc.setFundingState (meFunding.getValue());

  290.             System.out.print ("\t|  [" + meFunding.getKey() + "] => ");

  291.             for (Component comp : aOISFuturesComp)
  292.                 System.out.print (FormatUtil.FormatDouble (
  293.                     comp.measureValue (
  294.                         valParams,
  295.                         null,
  296.                         csqc,
  297.                         null,
  298.                         "SwapRate"
  299.                     ), 1, 4, 1.) + " |");

  300.             System.out.print ("|\n");
  301.         }

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

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

  304.         for (Map.Entry<String, MergedDiscountForwardCurve> meFunding : bumpedOvernightCurve.entrySet()) {
  305.             String strKey = meFunding.getKey();

  306.             if (!strKey.startsWith ("longendois")) continue;

  307.             CurveSurfaceQuoteContainer csqc = new CurveSurfaceQuoteContainer();

  308.             csqc.setFundingState (meFunding.getValue());

  309.             System.out.print ("\t|  [" + meFunding.getKey() + "] => ");

  310.             for (Component comp : aLongEndOISComp)
  311.                 System.out.print (FormatUtil.FormatDouble (
  312.                     comp.measureValue (
  313.                         valParams,
  314.                         null,
  315.                         csqc,
  316.                         null,
  317.                         "SwapRate"
  318.                     ), 1, 4, 1.) + " |");

  319.             System.out.print ("|\n");
  320.         }

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

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

  323.         CurveSurfaceQuoteContainer csqcBase = new CurveSurfaceQuoteContainer();

  324.         csqcBase.setFundingState (bumpedOvernightCurve.get ("Base"));

  325.         CurveSurfaceQuoteContainer csqcBump = new CurveSurfaceQuoteContainer();

  326.         csqcBump.setFundingState (bumpedOvernightCurve.get ("Bump"));

  327.         for (Component comp : aDepositComp)
  328.             System.out.println (
  329.                 "\t| FORWARD RATE  => " +
  330.                 comp.maturityDate() + " | " +
  331.                 FormatUtil.FormatDouble (comp.measureValue (
  332.                     valParams,
  333.                     null,
  334.                     csqcBase,
  335.                     null,
  336.                     "ForwardRate"
  337.                 ), 1, 6, 1.) + " | " +
  338.                 FormatUtil.FormatDouble (comp.measureValue (
  339.                     valParams,
  340.                     null,
  341.                     csqcBump,
  342.                     null,
  343.                     "ForwardRate"
  344.                 ), 1, 6, 1.) + " ||"
  345.             );

  346.         for (Component comp : aShortEndOISComp)
  347.             System.out.println (
  348.                 "\t|  SWAP   RATE  => " +
  349.                 comp.maturityDate() + " | " +
  350.                 FormatUtil.FormatDouble (comp.measureValue (
  351.                     valParams,
  352.                     null,
  353.                     csqcBase,
  354.                     null,
  355.                     "SwapRate"
  356.                 ), 1, 6, 1.) + " | " +
  357.                 FormatUtil.FormatDouble (comp.measureValue (
  358.                     valParams,
  359.                     null,
  360.                     csqcBump,
  361.                     null,
  362.                     "SwapRate"
  363.                 ), 1, 6, 1.) + " ||"
  364.             );

  365.         for (Component comp : aOISFuturesComp)
  366.             System.out.println (
  367.                 "\t|  SWAP   RATE  => " +
  368.                 comp.maturityDate() + " | " +
  369.                 FormatUtil.FormatDouble (comp.measureValue (
  370.                     valParams,
  371.                     null,
  372.                     csqcBase,
  373.                     null,
  374.                     "SwapRate"
  375.                 ), 1, 6, 1.) + " | " +
  376.                 FormatUtil.FormatDouble (comp.measureValue (
  377.                     valParams,
  378.                     null,
  379.                     csqcBump,
  380.                     null,
  381.                     "SwapRate"
  382.                 ), 1, 6, 1.) + " ||"
  383.             );

  384.         for (Component comp : aLongEndOISComp)
  385.             System.out.println (
  386.                 "\t|  SWAP   RATE  => " +
  387.                 comp.maturityDate() + " | " +
  388.                 FormatUtil.FormatDouble (comp.measureValue (
  389.                     valParams,
  390.                     null,
  391.                     csqcBase,
  392.                     null,
  393.                     "SwapRate"
  394.                 ), 1, 6, 1.) + " | " +
  395.                 FormatUtil.FormatDouble (comp.measureValue (
  396.                     valParams,
  397.                     null,
  398.                     csqcBump,
  399.                     null,
  400.                     "SwapRate"
  401.                 ), 1, 6, 1.) + " ||"
  402.             );

  403.         System.out.println ("\t|-----------------------------------------------------||");
  404.     }
  405. }