CDSBasketBuilder.java

  1. package org.drip.product.creator;

  2. /*
  3.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  4.  */

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

  82. /**
  83.  * <i>CDSBasketBuilder</i> contains the suite of helper functions for creating the CDS Basket Product from
  84.  * different kinds of inputs and byte streams.
  85.  *
  86.  *  <br><br>
  87.  *  <ul>
  88.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  89.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  90.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/product/README.md">Product Components/Baskets for Credit, FRA, FX, Govvie, Rates, and Option AssetClasses</a></li>
  91.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/product/creator/README.md">Streams and Products Construction Utilities</a></li>
  92.  *  </ul>
  93.  * <br><br>
  94.  *
  95.  * @author Lakshmi Krishnamurthy
  96.  */

  97. public class CDSBasketBuilder {

  98.     /**
  99.      * Create the named CDX from effective, maturity, coupon, IR curve name, credit curve name set, and their
  100.      *  weights.
  101.      *
  102.      * @param dtEffective JulianDate Effective
  103.      * @param dtMaturity JulianDate Maturity
  104.      * @param dblCoupon Coupon
  105.      * @param strIR IR curve name
  106.      * @param astrCC credit curve name
  107.      * @param adblWeight Credit Component Weights
  108.      * @param strName CDX name
  109.      *
  110.      * @return BasketDefaultSwap
  111.      */

  112.     public static final org.drip.product.definition.BasketProduct MakeCDX (
  113.         final org.drip.analytics.date.JulianDate dtEffective,
  114.         final org.drip.analytics.date.JulianDate dtMaturity,
  115.         final double dblCoupon,
  116.         final java.lang.String strIR,
  117.         final java.lang.String[] astrCC,
  118.         final double[] adblWeight,
  119.         final java.lang.String strName)
  120.     {
  121.         if (null == dtEffective || null == dtMaturity || !org.drip.numerical.common.NumberUtil.IsValid (dblCoupon)
  122.             || null == strIR || strIR.isEmpty() || null == strName || strName.isEmpty() || null == astrCC ||
  123.                 0 == astrCC.length || null == adblWeight || 0 == adblWeight.length || adblWeight.length !=
  124.                     astrCC.length)
  125.             return null;

  126.         org.drip.product.definition.CreditDefaultSwap aCDS[] = new
  127.             org.drip.product.definition.CreditDefaultSwap[astrCC.length];

  128.         for (int i = 0; i < astrCC.length; ++i) {
  129.             try {
  130.                 aCDS[i] = org.drip.product.creator.CDSBuilder.CreateCDS (dtEffective, dtMaturity, dblCoupon,
  131.                     strIR, 0.40, astrCC[i], strIR, true);
  132.             } catch (java.lang.Exception e) {
  133.                 e.printStackTrace();

  134.                 return null;
  135.             }
  136.         }

  137.         try {
  138.             return new org.drip.product.credit.CDSBasket (aCDS, adblWeight, strName);
  139.         } catch (java.lang.Exception e) {
  140.             e.printStackTrace();
  141.         }

  142.         return null;
  143.     }

  144.     /**
  145.      * Create the named CDX from effective, maturity, coupon, IR curve name, credit curve name set.
  146.      *
  147.      * @param dtEffective JulianDate Effective
  148.      * @param dtMaturity JulianDate Maturity
  149.      * @param dblCoupon Coupon
  150.      * @param strIR IR curve name
  151.      * @param astrCC credit curve name
  152.      * @param strName CDX name
  153.      *
  154.      * @return BasketDefaultSwap
  155.      */

  156.     public static final org.drip.product.definition.BasketProduct MakeCDX (
  157.         final org.drip.analytics.date.JulianDate dtEffective,
  158.         final org.drip.analytics.date.JulianDate dtMaturity,
  159.         final double dblCoupon,
  160.         final java.lang.String strIR,
  161.         final java.lang.String[] astrCC,
  162.         final java.lang.String strName)
  163.     {
  164.         if (null == dtEffective || null == dtMaturity || !org.drip.numerical.common.NumberUtil.IsValid (dblCoupon)
  165.             || null == strIR || strIR.isEmpty() || null == strName || strName.isEmpty() || null == astrCC ||
  166.                 0 == astrCC.length)
  167.             return null;

  168.         org.drip.product.definition.CreditDefaultSwap aCDS[] = new
  169.             org.drip.product.definition.CreditDefaultSwap[astrCC.length];

  170.         for (int i = 0; i < astrCC.length; ++i) {
  171.             try {
  172.                 aCDS[i] = org.drip.product.creator.CDSBuilder.CreateCDS (dtEffective, dtMaturity, dblCoupon,
  173.                     strIR, 0.40, astrCC[i], strIR, true);
  174.             } catch (java.lang.Exception e) {
  175.                 e.printStackTrace();

  176.                 return null;
  177.             }
  178.         }

  179.         try {
  180.             double adblWeight[] = new double[aCDS.length];

  181.             for (int i = 0; i < aCDS.length; ++i)
  182.                 adblWeight[i] = 1.;

  183.             return new org.drip.product.credit.CDSBasket (aCDS, adblWeight, strName);
  184.         } catch (java.lang.Exception e) {
  185.             e.printStackTrace();
  186.         }

  187.         return null;
  188.     }

  189.     /**
  190.      * Create the basket default swap from an array of the credit components.
  191.      *
  192.      * @param aComp Array of the credit components
  193.      *
  194.      * @return BasketDefaultSwap object
  195.      */

  196.     public static final org.drip.product.definition.BasketProduct MakeBasketDefaultSwap (
  197.         final org.drip.product.definition.Component[] aComp)
  198.     {
  199.         try {
  200.             double adblWeight[] = new double[aComp.length];

  201.             for (int i = 0; i < aComp.length; ++i)
  202.                 adblWeight[i] = 1.;

  203.             return new org.drip.product.credit.CDSBasket (aComp, adblWeight, "");
  204.         } catch (java.lang.Exception e) {
  205.             e.printStackTrace();
  206.         }

  207.         return null;
  208.     }
  209. }