CDSCashFlowMeasures.java

  1. package org.drip.sample.credit;

  2. /*
  3.  * Credit Product import
  4.  */

  5. import org.drip.analytics.cashflow.*;
  6. import org.drip.analytics.date.*;
  7. import org.drip.analytics.daycount.Convention;
  8. import org.drip.numerical.common.FormatUtil;
  9. import org.drip.param.market.CurveSurfaceQuoteContainer;
  10. import org.drip.param.pricer.CreditPricerParams;
  11. import org.drip.param.valuation.*;
  12. import org.drip.product.definition.*;
  13. import org.drip.param.creator.*;
  14. import org.drip.product.creator.*;
  15. import org.drip.service.env.EnvManager;
  16. import org.drip.state.creator.*;
  17. import org.drip.state.credit.CreditCurve;
  18. import org.drip.state.discount.MergedDiscountForwardCurve;

  19. /*
  20.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  21.  */

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

  98. /**
  99.  * <i>CDSCashFlowMeasures</i> contains a demo of the CDS Measures and Cash flow Generation Sample. It
  100.  * illustrates the following:
  101.  *
  102.  * <br><br>
  103.  * <ul>
  104.  *  <li>
  105.  *      Credit Curve Creation: From flat Hazard Rate, and from an array of dates and their corresponding
  106.  *          survival probabilities.
  107.  *  </li>
  108.  *  <li>
  109.  *      Create Credit Curve from CDS instruments, and recover the input measure quotes.
  110.  *  </li>
  111.  *  <li>
  112.  *      Create an SNAC CDS, price it, and display the coupon/loss cash flow.
  113.  *  </li>
  114.  * </ul>
  115.  *  
  116.  * <br><br>
  117.  *  <ul>
  118.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  119.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  120.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/README.md">DROP API Construction and Usage</a></li>
  121.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/cashflow/README.md">Single Name Portfolio CDS Analytics</a></li>
  122.  *  </ul>
  123.  * <br><br>
  124.  *
  125.  * @author Lakshmi Krishnamurthy
  126.  */

  127. public class CDSCashFlowMeasures {
  128.     private static final java.lang.String FIELD_SEPARATOR = "   ";

  129.     /*
  130.      * Sample API demonstrating the creation/usage of the credit curve from survival and hazard rates
  131.      *
  132.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  133.      */

  134.     private static final void CreditCurveAPISample()
  135.         throws Exception
  136.     {
  137.         JulianDate dtStart = DateUtil.Today();

  138.         JulianDate dt10Y = dtStart.addYears (10);

  139.         /*
  140.          * Create Credit Curve from flat Hazard Rate
  141.          */

  142.         CreditCurve ccFlatHazard = ScenarioCreditCurveBuilder.FlatHazard (
  143.             dtStart.julian(),
  144.             "CC",
  145.             "USD",
  146.             0.02,
  147.             0.4
  148.         );

  149.         System.out.println ("CCFromFlatHazard[" + dt10Y.toString() + "]; Survival=" +
  150.             ccFlatHazard.survival ("10Y") + "; Hazard=" + ccFlatHazard.hazard ("10Y"));

  151.         int[] aiDate = new int[5];
  152.         double[] adblSurvival = new double[5];

  153.         for (int i = 0; i < 5; ++i) {
  154.             aiDate[i] = dtStart.addYears (2 * i + 2).julian();

  155.             adblSurvival[i] = 1. - 0.1 * (i + 1);
  156.         }

  157.         /*
  158.          * Create Credit Curve from an array of dates and their corresponding survival probabilities
  159.          */

  160.         CreditCurve ccFromSurvival = ScenarioCreditCurveBuilder.Survival (
  161.             dtStart.julian(),
  162.             "CC",
  163.             "USD",
  164.             aiDate,
  165.             adblSurvival,
  166.             0.4
  167.         );

  168.         System.out.println ("CCFromSurvival[" + dt10Y.toString() + "]; Survival=" +
  169.             ccFromSurvival.survival ("10Y") + "; Hazard=" + ccFromSurvival.hazard ("10Y"));
  170.     }

  171.     /*
  172.      * Sample API demonstrating the creation of the Credit Curve from the CDS instruments
  173.      *
  174.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  175.      */

  176.     private static void CreateCreditCurveFromCDSInstruments()
  177.         throws Exception
  178.     {
  179.         JulianDate dtStart = DateUtil.Today();

  180.         /*
  181.          * Populate the instruments, the calibration measures, and the calibration quotes
  182.          */

  183.         double[] adblQuotes = new double[5];
  184.         String[] astrCalibMeasure = new String[5];
  185.         CreditDefaultSwap[] aCDS = new CreditDefaultSwap[5];

  186.         for (int i = 0; i < 5; ++i) {
  187.             /*
  188.              * The Calibration CDS
  189.              */

  190.             aCDS[i] = CDSBuilder.CreateSNAC (
  191.                 dtStart,
  192.                 (i + 1) + "Y",
  193.                 0.01,
  194.                 "CORP"
  195.             );

  196.             /*
  197.              * Calibration Quote
  198.              */

  199.             adblQuotes[i] = 100.;

  200.             /*
  201.              * Calibration Measure
  202.              */

  203.             astrCalibMeasure[i] = "FairPremium";
  204.         }

  205.         /*
  206.          * Flat Discount Curve
  207.          */

  208.         MergedDiscountForwardCurve dc = ScenarioDiscountCurveBuilder.ExponentiallyCompoundedFlatRate (
  209.             dtStart,
  210.             "USD",
  211.             0.05
  212.         );

  213.         /*
  214.          * Create the Credit Curve from the give CDS instruments
  215.          */

  216.         CreditCurve cc = ScenarioCreditCurveBuilder.Custom (
  217.             "CORP",
  218.             dtStart,
  219.             aCDS,
  220.             dc,
  221.             adblQuotes,
  222.             astrCalibMeasure,
  223.             0.4,
  224.             false
  225.         );

  226.         /*
  227.          * Valuation Parameters
  228.          */

  229.         ValuationParams valParams = ValuationParams.Spot (
  230.             dtStart,
  231.             0,
  232.             "",
  233.             Convention.DATE_ROLL_ACTUAL
  234.         );

  235.         /*
  236.          * Standard Credit Pricer Parameters (check javadoc for details)
  237.          */

  238.         CreditPricerParams pricerParams = CreditPricerParams.Standard();

  239.         /*
  240.          * Re-calculate the input calibration measures for the input CDSes
  241.          */

  242.         for (int i = 0; i < aCDS.length; ++i)
  243.             System.out.println (
  244.                 "\t" + astrCalibMeasure[i] + "[" + i + "] = " +
  245.                 aCDS[i].measureValue (
  246.                     valParams, pricerParams, MarketParamsBuilder.Create (
  247.                         dc,
  248.                         null,
  249.                         null,
  250.                         cc,
  251.                         null,
  252.                         null,
  253.                         null,
  254.                         null
  255.                     ),
  256.                     null,
  257.                     astrCalibMeasure[i]
  258.                 )
  259.             );
  260.     }

  261.     /*
  262.      * Sample API demonstrating the display of the CDS coupon and loss cash flow
  263.      *
  264.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  265.      */

  266.     private static final void CDSAPISample()
  267.         throws Exception
  268.     {
  269.         JulianDate dtStart = DateUtil.Today();

  270.         /*
  271.          * Flat Discount Curve
  272.          */

  273.         MergedDiscountForwardCurve dc = ScenarioDiscountCurveBuilder.ExponentiallyCompoundedFlatRate (
  274.             dtStart,
  275.             "USD",
  276.             0.05
  277.         );

  278.         /*
  279.          * Flat Credit Curve
  280.          */

  281.         CreditCurve cc = ScenarioCreditCurveBuilder.FlatHazard (
  282.             dtStart.julian(),
  283.             "CC",
  284.             "USD",
  285.             0.02,
  286.             0.4
  287.         );

  288.         /*
  289.          * Component Market Parameters built from the Discount and the Credit Curves
  290.          */

  291.         CurveSurfaceQuoteContainer mktParams = MarketParamsBuilder.Credit (
  292.             dc,
  293.             cc
  294.         );

  295.         /*
  296.          * Create an SNAC CDS
  297.          */

  298.         CreditDefaultSwap cds = CDSBuilder.CreateSNAC (
  299.             dtStart,
  300.             "5Y",
  301.             0.1,
  302.             "CC"
  303.         );

  304.         /*
  305.          * Valuation Parameters
  306.          */

  307.         ValuationParams valParams = ValuationParams.Spot (
  308.             dtStart,
  309.             0,
  310.             "",
  311.             Convention.DATE_ROLL_ACTUAL
  312.         );

  313.         /*
  314.          * Standard Credit Pricer Parameters (check javadoc for details)
  315.          */

  316.         CreditPricerParams pricerParams = CreditPricerParams.Standard();

  317.         System.out.println ("Loss Start     Loss End  Notl    Rec    EffDF    StartSurv  EndSurv");

  318.         System.out.println ("----------     --------  ----    ---    -----    ---------  -------");

  319.         /*
  320.          * CDS Loss Cash Flow
  321.          */

  322.         for (LossQuadratureMetrics dp : cds.lossFlow (valParams, pricerParams, mktParams))
  323.             System.out.println (
  324.                 DateUtil.YYYYMMDD (dp.startDate()) + FIELD_SEPARATOR +
  325.                 DateUtil.YYYYMMDD (dp.endDate()) + FIELD_SEPARATOR +
  326.                 FormatUtil.FormatDouble (dp.effectiveNotional(), 1, 0, 1.) + FIELD_SEPARATOR +
  327.                 FormatUtil.FormatDouble (dp.effectiveRecovery(), 1, 2, 1.) + FIELD_SEPARATOR +
  328.                 FormatUtil.FormatDouble (dp.effectiveDF(), 1, 4, 1.)  + FIELD_SEPARATOR +
  329.                 FormatUtil.FormatDouble (dp.startSurvival(), 1, 4, 1.) + FIELD_SEPARATOR +
  330.                 FormatUtil.FormatDouble (dp.endSurvival(), 1, 4, 1.)
  331.             );
  332.     }

  333.     public static final void main (
  334.         final String astrArgs[])
  335.         throws Exception
  336.     {
  337.         // String strConfig = "c:\\Lakshmi\\BondAnal\\Config.xml";

  338.         EnvManager.InitEnv ("");

  339.         CreditCurveAPISample();

  340.         CreateCreditCurveFromCDSInstruments();

  341.         CDSAPISample();

  342.         EnvManager.TerminateEnv();
  343.     }
  344. }