CDSBasketMeasures.java

  1. package org.drip.sample.credit;

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

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

  22. /*
  23.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  24.  */

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

  100. /**
  101.  * <i>CDSBasketMeasures</i> contains a demo of the CDS Basket Measures Generation Sample. It shows the
  102.  * following:
  103.  *
  104.  * <br><br>
  105.  *  <ul>
  106.  *      <li>
  107.  *          Build the IR Curve from the Rates' instruments.
  108.  *      </li>
  109.  *      <li>
  110.  *          Build the Component Credit Curve from the CDS instruments.
  111.  *      </li>
  112.  *      <li>
  113.  *          Create the basket market parameters and add the named discount curve and the credit curves to it.
  114.  *      </li>
  115.  *      <li>
  116.  *          Create the CDS basket from the component CDS and their weights.
  117.  *      </li>
  118.  *      <li>
  119.  *          Construct the Valuation and the Pricing Parameters.
  120.  *      </li>
  121.  *      <li>
  122.  *          Generate the CDS basket measures from the valuation, the pricer, and the market parameters.
  123.  *      </li>
  124.  *  </ul>
  125.  *  
  126.  * <br><br>
  127.  *  <ul>
  128.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  129.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  130.  *      <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>
  131.  *      <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>
  132.  *  </ul>
  133.  * <br><br>
  134.  *
  135.  * @author Lakshmi Krishnamurthy
  136.  */

  137. public class CDSBasketMeasures {

  138.     private static final FixFloatComponent OTCIRS (
  139.         final JulianDate dtSpot,
  140.         final String strCurrency,
  141.         final String strMaturityTenor,
  142.         final double dblCoupon)
  143.     {
  144.         FixedFloatSwapConvention ffConv = IBORFixedFloatContainer.ConventionFromJurisdiction (
  145.             strCurrency,
  146.             "ALL",
  147.             strMaturityTenor,
  148.             "MAIN"
  149.         );

  150.         return ffConv.createFixFloatComponent (
  151.             dtSpot,
  152.             strMaturityTenor,
  153.             dblCoupon,
  154.             0.,
  155.             1.
  156.         );
  157.     }

  158.     /*
  159.      * Sample demonstrating creation of a rates curve from instruments
  160.      *
  161.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  162.      */

  163.     private static MergedDiscountForwardCurve BuildRatesCurveFromInstruments (
  164.         final JulianDate dtStart,
  165.         final String[] astrCashTenor,
  166.         final double[] adblCashRate,
  167.         final String[] astrIRSTenor,
  168.         final double[] adblIRSRate,
  169.         final double dblBump,
  170.         final String strCurrency)
  171.         throws Exception
  172.     {
  173.         int iNumDCInstruments = astrCashTenor.length + adblIRSRate.length;
  174.         int aiDate[] = new int[iNumDCInstruments];
  175.         double adblRate[] = new double[iNumDCInstruments];
  176.         String astrCalibMeasure[] = new String[iNumDCInstruments];
  177.         double adblCompCalibValue[] = new double[iNumDCInstruments];
  178.         CalibratableComponent aCompCalib[] = new CalibratableComponent[iNumDCInstruments];

  179.         // Cash Calibration

  180.         JulianDate dtCashEffective = dtStart.addBusDays (1, strCurrency);

  181.         for (int i = 0; i < astrCashTenor.length; ++i) {
  182.             astrCalibMeasure[i] = "Rate";
  183.             adblRate[i] = java.lang.Double.NaN;
  184.             adblCompCalibValue[i] = adblCashRate[i] + dblBump;

  185.             aCompCalib[i] = SingleStreamComponentBuilder.Deposit (
  186.                 dtCashEffective,
  187.                 new JulianDate (aiDate[i] = dtCashEffective.addTenor (astrCashTenor[i]).julian()),
  188.                 ForwardLabel.Create (
  189.                     strCurrency,
  190.                     astrCashTenor[i]
  191.                 )
  192.             );
  193.         }

  194.         // IRS Calibration

  195.         JulianDate dtIRSEffective = dtStart.addBusDays (
  196.             2,
  197.             strCurrency
  198.         );

  199.         for (int i = 0; i < astrIRSTenor.length; ++i) {
  200.             astrCalibMeasure[i + astrCashTenor.length] = "Rate";
  201.             adblRate[i + astrCashTenor.length] = java.lang.Double.NaN;
  202.             adblCompCalibValue[i + astrCashTenor.length] = adblIRSRate[i] + dblBump;

  203.             aiDate[i + astrCashTenor.length] = dtIRSEffective.addTenor (astrIRSTenor[i]).julian();

  204.             aCompCalib[i + astrCashTenor.length] = OTCIRS (
  205.                 dtIRSEffective,
  206.                 strCurrency,
  207.                 astrIRSTenor[i],
  208.                 0.
  209.             );
  210.         }

  211.         /*
  212.          * Build the IR curve from the components, their calibration measures, and their calibration quotes.
  213.          */

  214.         return ScenarioDiscountCurveBuilder.NonlinearBuild (
  215.             dtStart,
  216.             strCurrency,
  217.             aCompCalib,
  218.             adblCompCalibValue,
  219.             astrCalibMeasure,
  220.             null
  221.         );
  222.     }

  223.     /*
  224.      * Sample demonstrating the creation/usage of the Credit Curve from CDS Instruments
  225.      *
  226.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  227.      */

  228.     private static CreditCurve CreateCreditCurveFromCDS (
  229.         final JulianDate dtStart,
  230.         final double[] adblQuote,
  231.         final String[] astrTenor,
  232.         final MergedDiscountForwardCurve dc,
  233.         final double dblRecovery,
  234.         final String strCCName)
  235.         throws Exception
  236.     {
  237.         String[] astrCalibMeasure = new String[adblQuote.length];
  238.         CreditDefaultSwap[] aCDS = new CreditDefaultSwap[adblQuote.length];

  239.         for (int i = 0; i < astrTenor.length; ++i) {
  240.             aCDS[i] = CDSBuilder.CreateSNAC (
  241.                 dtStart,
  242.                 astrTenor[i],
  243.                 0.01,
  244.                 strCCName
  245.             );

  246.             astrCalibMeasure[i] = "FairPremium";
  247.         }

  248.         /*
  249.          * Build the credit curve from the CDS instruments and the fair premium
  250.          */

  251.         return ScenarioCreditCurveBuilder.Custom (
  252.             strCCName,
  253.             dtStart,
  254.             aCDS,
  255.             dc,
  256.             adblQuote,
  257.             astrCalibMeasure,
  258.             dblRecovery,
  259.             false
  260.         );
  261.     }

  262.     /*
  263.      * Sample demonstrating the creation/usage of the bond basket API
  264.      *
  265.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  266.      */

  267.     public static final void BasketBondAPISample()
  268.         throws Exception
  269.     {
  270.         JulianDate dtCurve = DateUtil.CreateFromYMD (
  271.             2013,
  272.             6,
  273.             27
  274.         );

  275.         JulianDate dtSettle = DateUtil.CreateFromYMD (
  276.             2013,
  277.             7,
  278.             1
  279.         );

  280.         /*
  281.          * Build the IR Curve from the Rates' instruments
  282.          */

  283.         String[] astrCashTenor = new String[] {
  284.             "3M"
  285.         };
  286.         double[] adblCashRate = new double[] {
  287.             0.00276
  288.         };
  289.         String[] astrIRSTenor = new String[] {   "1Y",    "2Y",    "3Y",    "4Y",    "5Y",    "6Y",    "7Y",
  290.                "8Y",    "9Y",   "10Y",   "11Y",   "12Y",   "15Y",   "20Y",   "25Y",   "30Y",   "40Y",   "50Y"};
  291.         double[] adblIRSRate = new double[]  {0.00367, 0.00533, 0.00843, 0.01238, 0.01609, 0.01926, 0.02191,
  292.             0.02406, 0.02588, 0.02741, 0.02870, 0.02982, 0.03208, 0.03372, 0.03445, 0.03484, 0.03501, 0.03484};

  293.         MergedDiscountForwardCurve dc = BuildRatesCurveFromInstruments (
  294.             dtCurve,
  295.             astrCashTenor,
  296.             adblCashRate,
  297.             astrIRSTenor,
  298.             adblIRSRate,
  299.             0.,
  300.             "USD"
  301.         );

  302.         /*
  303.          * Build the Component Credit Curve from the CDS instruments
  304.          */

  305.         CreditCurve ccCHN = CreateCreditCurveFromCDS (dtCurve,
  306.             new double[] {100., 100., 100., 100., 100., 100., 100., 100.},
  307.             new String[] {"6M", "1Y", "2Y", "3Y", "4Y", "5Y", "7Y", "10Y"}, dc, 0.4, "CHN");

  308.         CreditCurve ccIND = CreateCreditCurveFromCDS (dtCurve,
  309.             new double[] {100., 100., 100., 100., 100., 100., 100., 100.},
  310.             new String[] {"6M", "1Y", "2Y", "3Y", "4Y", "5Y", "7Y", "10Y"}, dc, 0.4, "IND");

  311.         CreditCurve ccBRA = CreateCreditCurveFromCDS (dtCurve,
  312.             new double[] {100., 100., 100., 100., 100., 100., 100., 100.},
  313.             new String[] {"6M", "1Y", "2Y", "3Y", "4Y", "5Y", "7Y", "10Y"}, dc, 0.4, "BRA");

  314.         CreditCurve ccRUS = CreateCreditCurveFromCDS (dtCurve,
  315.             new double[] {100., 100., 100., 100., 100., 100., 100., 100.},
  316.             new String[] {"6M", "1Y", "2Y", "3Y", "4Y", "5Y", "7Y", "10Y"}, dc, 0.4, "RUS");

  317.         CreditCurve ccKOR = CreateCreditCurveFromCDS (dtCurve,
  318.             new double[] {100., 100., 100., 100., 100., 100., 100., 100.},
  319.             new String[] {"6M", "1Y", "2Y", "3Y", "4Y", "5Y", "7Y", "10Y"}, dc, 0.4, "KOR");

  320.         CreditCurve ccTUR = CreateCreditCurveFromCDS (dtCurve,
  321.             new double[] {100., 100., 100., 100., 100., 100., 100., 100.},
  322.             new String[] {"6M", "1Y", "2Y", "3Y", "4Y", "5Y", "7Y", "10Y"}, dc, 0.4, "TUR");

  323.         /*
  324.          * Create the basket market parameters and add the named discount curve and the credit curves to it.
  325.          */

  326.         CurveSurfaceQuoteContainer mktParams =  new CurveSurfaceQuoteContainer();

  327.         mktParams.setFundingState (dc);

  328.         mktParams.setCreditState (ccCHN);

  329.         mktParams.setCreditState (ccIND);

  330.         mktParams.setCreditState (ccBRA);

  331.         mktParams.setCreditState (ccRUS);

  332.         mktParams.setCreditState (ccKOR);

  333.         mktParams.setCreditState (ccTUR);

  334.         /*
  335.          * Create the CDS basket from the component CDS and their weights
  336.          */

  337.         CreditDefaultSwap aCDS[] = new CreditDefaultSwap[6];

  338.         aCDS[0] = CDSBuilder.CreateSNAC (dtCurve, "5Y", 0.01, "CHN");

  339.         aCDS[1] = CDSBuilder.CreateSNAC (dtCurve, "5Y", 0.01, "IND");

  340.         aCDS[2] = CDSBuilder.CreateSNAC (dtCurve, "5Y", 0.01, "BRA");

  341.         aCDS[3] = CDSBuilder.CreateSNAC (dtCurve, "5Y", 0.01, "RUS");

  342.         aCDS[4] = CDSBuilder.CreateSNAC (dtCurve, "5Y", 0.01, "KOR");

  343.         aCDS[5] = CDSBuilder.CreateSNAC (dtCurve, "5Y", 0.01, "TUR");

  344.         BasketProduct bds = new CDSBasket (aCDS, new double[] {1., 2., 3., 4., 5., 6.}, "BRIC");

  345.         /*
  346.          * Construct the Valuation and the Pricing Parameters
  347.          */

  348.         ValuationParams valParams = ValuationParams.Spot (
  349.             dtSettle,
  350.             0,
  351.             "USD",
  352.             Convention.DATE_ROLL_ACTUAL
  353.         );

  354.         CreditPricerParams pricerParams = new CreditPricerParams (
  355.             7,
  356.             null,
  357.             false,
  358.             CreditPricerParams.PERIOD_DISCRETIZATION_FULL_COUPON
  359.         );

  360.         /*
  361.          * Generate the CDS basket measures from the valuation, the pricer, and the market parameters
  362.          */

  363.         CaseInsensitiveTreeMap<Double> mapResult = bds.value (
  364.             valParams,
  365.             pricerParams,
  366.             mktParams,
  367.             null
  368.         );

  369.         System.out.println ("Accrued:      " + FormatUtil.FormatDouble (mapResult.get ("Accrued"), 0, 2, 100.));

  370.         System.out.println ("Clean PV:     " + FormatUtil.FormatDouble (mapResult.get ("CleanPV"), 0, 2, 1.));

  371.         System.out.println ("Fair Premium: " + FormatUtil.FormatDouble (mapResult.get ("FairPremium"), 0, 2, 1.));

  372.         System.out.println ("Fair Upfront: " + FormatUtil.FormatDouble (mapResult.get ("FairUpfront"), 0, 2, 1.));
  373.     }

  374.     public static final void main (
  375.         final String astrArgs[])
  376.         throws Exception
  377.     {
  378.         // String strConfig = "c:\\Lakshmi\\BondAnal\\Config.xml";

  379.         String strConfig = "";

  380.         EnvManager.InitEnv (strConfig);

  381.         BasketBondAPISample();

  382.         EnvManager.TerminateEnv();
  383.     }
  384. }