Puducherry.java

  1. package org.drip.sample.bondmetrics;

  2. import org.drip.analytics.date.*;
  3. import org.drip.numerical.common.Array2D;
  4. import org.drip.product.creator.BondBuilder;
  5. import org.drip.product.credit.BondComponent;
  6. import org.drip.product.params.EmbeddedOptionSchedule;
  7. import org.drip.service.env.EnvManager;
  8. import org.drip.service.scenario.*;

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

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

  83. /**
  84.  * <i>Puducherry</i> generates the Full Suite of Replication Metrics for Bond Puducherry.
  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/sample/README.md">DROP API Construction and Usage</a></li>
  91.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/bondmetrics/README.md">Bond Relative Value Replication Demonstration</a></li>
  92.  *  </ul>
  93.  * <br><br>
  94.  *
  95.  * @author Lakshmi Krishnamurthy
  96.  */

  97. public class Puducherry {

  98.     private static final void SetEOS (
  99.         final BondComponent bond,
  100.         final EmbeddedOptionSchedule eosCall,
  101.         final EmbeddedOptionSchedule eosPut)
  102.         throws java.lang.Exception
  103.     {
  104.         if (null != eosPut) bond.setEmbeddedPutSchedule (eosPut);

  105.         if (null != eosCall) bond.setEmbeddedCallSchedule (eosCall);
  106.     }

  107.     public static final void main (
  108.         final String[] astArgs)
  109.         throws Exception
  110.     {
  111.         EnvManager.InitEnv (
  112.             "",
  113.             true
  114.         );

  115.         JulianDate dtSpot = DateUtil.CreateFromYMD (
  116.             2017,
  117.             DateUtil.JULY,
  118.             10
  119.         );

  120.         String[] astrDepositTenor = new String[] {
  121.             "2D"
  122.         };

  123.         double[] adblDepositQuote = new double[] {
  124.             0.0130411 // 2D
  125.         };

  126.         double[] adblFuturesQuote = new double[] {
  127.             0.01345,    // 98.655
  128.             0.01470,    // 98.530
  129.             0.01575,    // 98.425
  130.             0.01660,    // 98.340
  131.             0.01745,    // 98.255
  132.             0.01845     // 98.155
  133.         };

  134.         String[] astrFixFloatTenor = new String[] {
  135.             "02Y",
  136.             "03Y",
  137.             "04Y",
  138.             "05Y",
  139.             "06Y",
  140.             "07Y",
  141.             "08Y",
  142.             "09Y",
  143.             "10Y",
  144.             "11Y",
  145.             "12Y",
  146.             "15Y",
  147.             "20Y",
  148.             "25Y",
  149.             "30Y",
  150.             "40Y",
  151.             "50Y"
  152.         };

  153.         String[] astrGovvieTenor = new String[] {
  154.             "1Y",
  155.             "2Y",
  156.             "3Y",
  157.             "5Y",
  158.             "7Y",
  159.             "10Y",
  160.             "20Y",
  161.             "30Y"
  162.         };

  163.         double[] adblFixFloatQuote = new double[] {
  164.             0.016410, //  2Y
  165.             0.017863, //  3Y
  166.             0.019030, //  4Y
  167.             0.020035, //  5Y
  168.             0.020902, //  6Y
  169.             0.021660, //  7Y
  170.             0.022307, //  8Y
  171.             0.022879, //  9Y
  172.             0.023363, // 10Y
  173.             0.023820, // 11Y
  174.             0.024172, // 12Y
  175.             0.024934, // 15Y
  176.             0.025581, // 20Y
  177.             0.025906, // 25Y
  178.             0.025973, // 30Y
  179.             0.025838, // 40Y
  180.             0.025560  // 50Y
  181.         };

  182.         double[] adblGovvieYield = new double[] {
  183.             0.01219, //  1Y
  184.             0.01391, //  2Y
  185.             0.01590, //  3Y
  186.             0.01937, //  5Y
  187.             0.02200, //  7Y
  188.             0.02378, // 10Y
  189.             0.02677, // 20Y
  190.             0.02927  // 30Y
  191.         };

  192.         String[] astrCreditTenor = new String[] {
  193.             "06M",
  194.             "01Y",
  195.             "02Y",
  196.             "03Y",
  197.             "04Y",
  198.             "05Y",
  199.             "07Y",
  200.             "10Y"
  201.         };

  202.         double[] adblCreditQuote = new double[] {
  203.              60.,   //  6M
  204.              68.,   //  1Y
  205.              88.,   //  2Y
  206.             102.,   //  3Y
  207.             121.,   //  4Y
  208.             138.,   //  5Y
  209.             168.,   //  7Y
  210.             188.    // 10Y
  211.         };

  212.         double dblFX = 1.;
  213.         int iSettleLag = 3;
  214.         int iCouponFreq = 2;
  215.         String strName = "Puducherry";
  216.         double dblCleanPrice = 0.4;
  217.         double dblIssuePrice = 0.4;
  218.         String strCurrency = "USD";
  219.         double dblSpreadBump = 20.;
  220.         double dblCouponRate = 0.00000;
  221.         double dblIssueAmount = 903433.6;
  222.         String strTreasuryCode = "UST";
  223.         String strCouponDayCount = "30/360";
  224.         double dblSpreadDurationMultiplier = 5.;
  225.         String strDateFactor = "1/1/2050;903433.6;1/1/2051;843446.4;1/1/2052;787414.4;1/1/2053;735008.0;7/1/2053;170403.2";

  226.         JulianDate dtEffective = DateUtil.CreateFromYMD (
  227.             2013,
  228.             12,
  229.             23
  230.         );

  231.         JulianDate dtMaturity = DateUtil.CreateFromYMD (
  232.             2053,
  233.             7,
  234.             1
  235.         );

  236.         BondComponent bond = BondBuilder.CreateSimpleFixed (
  237.             strName,
  238.             strCurrency,
  239.             strName,
  240.             dblCouponRate,
  241.             iCouponFreq,
  242.             strCouponDayCount,
  243.             dtEffective,
  244.             dtMaturity,
  245.             Array2D.FromDateFactorVertex (
  246.                 strDateFactor,
  247.                 dtMaturity.julian(),
  248.                 dblIssueAmount
  249.             ),
  250.             null
  251.         );

  252.         SetEOS (
  253.             bond,
  254.             null,
  255.             null
  256.         );

  257.         BondReplicator abr = BondReplicator.CorporateSenior (
  258.             dblCleanPrice,
  259.             dblIssuePrice,
  260.             dblIssueAmount,
  261.             dtSpot,
  262.             astrDepositTenor,
  263.             adblDepositQuote,
  264.             adblFuturesQuote,
  265.             astrFixFloatTenor,
  266.             adblFixFloatQuote,
  267.             dblSpreadBump,
  268.             dblSpreadDurationMultiplier,
  269.             strTreasuryCode,
  270.             astrGovvieTenor,
  271.             adblGovvieYield,
  272.             astrCreditTenor,
  273.             adblCreditQuote,
  274.             dblFX,
  275.             Double.NaN,
  276.             iSettleLag,
  277.             bond
  278.         );

  279.         BondReplicationRun abrr = abr.generateRun();

  280.         System.out.println (abrr.display());

  281.         EnvManager.TerminateEnv();
  282.     }
  283. }