RajpurSonarpur.java

  1. package org.drip.sample.bondmetrics;

  2. import org.drip.analytics.cashflow.CompositePeriod;
  3. import org.drip.analytics.date.*;
  4. import org.drip.analytics.daycount.*;
  5. import org.drip.numerical.common.FormatUtil;
  6. import org.drip.param.creator.MarketParamsBuilder;
  7. import org.drip.param.market.CurveSurfaceQuoteContainer;
  8. import org.drip.param.valuation.ValuationParams;
  9. import org.drip.product.creator.BondBuilder;
  10. import org.drip.product.credit.BondComponent;
  11. import org.drip.product.params.EmbeddedOptionSchedule;
  12. import org.drip.service.env.EnvManager;
  13. import org.drip.service.scenario.*;
  14. import org.drip.service.template.LatentMarketStateBuilder;
  15. import org.drip.state.discount.MergedDiscountForwardCurve;

  16. /*
  17.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  18.  */

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

  90. /**
  91.  * <i>Rajpur Sonarpur</i> generates the Full Suite of Replication Metrics for a Sample Bond.
  92.  *  
  93.  * <br><br>
  94.  *  <ul>
  95.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  96.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  97.  *      <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>
  98.  *      <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>
  99.  *  </ul>
  100.  * <br><br>
  101.  *
  102.  * @author Lakshmi Krishnamurthy
  103.  */

  104. public class RajpurSonarpur {

  105.     private static final void SetEOS (
  106.         final BondComponent bond,
  107.         final EmbeddedOptionSchedule eosCall,
  108.         final EmbeddedOptionSchedule eosPut)
  109.         throws java.lang.Exception
  110.     {
  111.         if (null != eosPut) bond.setEmbeddedPutSchedule (eosPut);

  112.         if (null != eosCall) bond.setEmbeddedCallSchedule (eosCall);
  113.     }

  114.     public static final void main (
  115.         final String[] astArgs)
  116.         throws Exception
  117.     {
  118.         EnvManager.InitEnv (
  119.             "",
  120.             true
  121.         );

  122.         JulianDate dtSpot = DateUtil.CreateFromYMD (
  123.             2017,
  124.             DateUtil.SEPTEMBER,
  125.             20
  126.         );

  127.         String[] astrDepositTenor = new String[] {
  128.             "2D"
  129.         };

  130.         double[] adblDepositQuote = new double[] {
  131.             0.0130411 // 2D
  132.         };

  133.         double[] adblFuturesQuote = new double[] {
  134.             0.01345,    // 98.655
  135.             0.01470,    // 98.530
  136.             0.01575,    // 98.425
  137.             0.01660,    // 98.340
  138.             0.01745,    // 98.255
  139.             0.01845     // 98.155
  140.         };

  141.         String[] astrFixFloatTenor = new String[] {
  142.             "02Y",
  143.             "03Y",
  144.             "04Y",
  145.             "05Y",
  146.             "06Y",
  147.             "07Y",
  148.             "08Y",
  149.             "09Y",
  150.             "10Y",
  151.             "11Y",
  152.             "12Y",
  153.             "15Y",
  154.             "20Y",
  155.             "25Y",
  156.             "30Y",
  157.             "40Y",
  158.             "50Y"
  159.         };

  160.         String[] astrGovvieTenor = new String[] {
  161.             "1Y",
  162.             "2Y",
  163.             "3Y",
  164.             "5Y",
  165.             "7Y",
  166.             "10Y",
  167.             "20Y",
  168.             "30Y"
  169.         };

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

  189.         double[] adblGovvieYield = new double[] {
  190.             0.01219, //  1Y
  191.             0.01391, //  2Y
  192.             0.01590, //  3Y
  193.             0.01937, //  5Y
  194.             0.02200, //  7Y
  195.             0.02378, // 10Y
  196.             0.02677, // 20Y
  197.             0.02927  // 30Y
  198.         };

  199.         String[] astrCreditTenor = new String[] {
  200.             "06M",
  201.             "01Y",
  202.             "02Y",
  203.             "03Y",
  204.             "04Y",
  205.             "05Y",
  206.             "07Y",
  207.             "10Y"
  208.         };

  209.         double[] adblCreditQuote = new double[] {
  210.              60.,   //  6M
  211.              68.,   //  1Y
  212.              88.,   //  2Y
  213.             102.,   //  3Y
  214.             121.,   //  4Y
  215.             138.,   //  5Y
  216.             168.,   //  7Y
  217.             188.    // 10Y
  218.         };

  219.         double dblFX = 1.;
  220.         int iSettleLag = 3;
  221.         int iCouponFreq = 2;
  222.         String strName = "RajpurSonarpur";
  223.         double dblCleanPrice = 1.03125;
  224.         double dblIssuePrice = 1.0;
  225.         String strCurrency = "USD";
  226.         double dblSpreadBump = 20.;
  227.         double dblCouponRate = 0.06125;
  228.         double dblIssueAmount = 5.25e08;
  229.         String strTreasuryCode = "UST";
  230.         String strCouponDayCount = "30/360";
  231.         double dblSpreadDurationMultiplier = 5.;

  232.         JulianDate dtEffective = DateUtil.CreateFromYMD (
  233.             2013,
  234.             9,
  235.             12
  236.         );

  237.         JulianDate dtMaturity = DateUtil.CreateFromYMD (
  238.             2021,
  239.             10,
  240.             15
  241.         );

  242.         BondComponent bond = BondBuilder.CreateSimpleFixedFP (
  243.             strName,
  244.             strCurrency,
  245.             strName,
  246.             dblCouponRate,
  247.             iCouponFreq,
  248.             strCouponDayCount,
  249.             dtEffective,
  250.             dtMaturity,
  251.             DateUtil.CreateFromYMD (
  252.                 2014,
  253.                 4,
  254.                 15
  255.             ).julian(),
  256.             DateUtil.CreateFromYMD (
  257.                 2021,
  258.                 4,
  259.                 15
  260.             ).julian(),
  261.             new DateAdjustParams (
  262.                 Convention.DATE_ROLL_FOLLOWING,
  263.                 0,
  264.                 strCurrency
  265.             ),
  266.             null,
  267.             null,
  268.             null,
  269.             null,
  270.             null,
  271.             null,
  272.             null,
  273.             null,
  274.             null
  275.         );

  276.         SetEOS (
  277.             bond,
  278.             new EmbeddedOptionSchedule (
  279.                 // dtSpot.julian(),
  280.                 new int[] {
  281.                     DateUtil.CreateFromYMD (2016, 10, 15).julian(),
  282.                     DateUtil.CreateFromYMD (2017, 10, 15).julian(),
  283.                     DateUtil.CreateFromYMD (2018, 10, 15).julian(),
  284.                     DateUtil.CreateFromYMD (2019, 10, 15).julian(),
  285.                 },
  286.                 new double[] {
  287.                     1.04594,
  288.                     1.03063,
  289.                     1.01531,
  290.                     1.00000,
  291.                 },
  292.                 false,
  293.                 15,
  294.                 // 1,
  295.                 false,
  296.                 Double.NaN,
  297.                 "",
  298.                 Double.NaN
  299.             ),
  300.             null
  301.         );

  302.         BondReplicator abr = BondReplicator.CorporateSenior (
  303.             dblCleanPrice,
  304.             dblIssuePrice,
  305.             dblIssueAmount,
  306.             dtSpot,
  307.             astrDepositTenor,
  308.             adblDepositQuote,
  309.             adblFuturesQuote,
  310.             astrFixFloatTenor,
  311.             adblFixFloatQuote,
  312.             dblSpreadBump,
  313.             dblSpreadDurationMultiplier,
  314.             strTreasuryCode,
  315.             astrGovvieTenor,
  316.             adblGovvieYield,
  317.             astrCreditTenor,
  318.             adblCreditQuote,
  319.             dblFX,
  320.             Double.NaN,
  321.             iSettleLag,
  322.             bond
  323.         );

  324.         BondReplicationRun abrr = abr.generateRun();

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

  326.         MergedDiscountForwardCurve mdfc = LatentMarketStateBuilder.SmoothFundingCurve (
  327.             dtSpot,
  328.             strCurrency,
  329.             astrDepositTenor,
  330.             adblDepositQuote,
  331.             "ForwardRate",
  332.             adblFuturesQuote,
  333.             "ForwardRate",
  334.             astrFixFloatTenor,
  335.             adblFixFloatQuote,
  336.             "SwapRate"
  337.         );

  338.         CurveSurfaceQuoteContainer csqc = MarketParamsBuilder.Create (
  339.             mdfc,
  340.             null,
  341.             null,
  342.             null,
  343.             null,
  344.             null,
  345.             null
  346.         );

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

  348.         System.out.println();

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

  350.         System.out.println ("\t||                                           PERIOD LABELS AND CURVE FACTORS                                          ||");

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

  352.         System.out.println ("\t||   L -> R:                                                                                                          ||");

  353.         System.out.println ("\t||           - Period Start Date                                                                                      ||");

  354.         System.out.println ("\t||           - Period End Date                                                                                        ||");

  355.         System.out.println ("\t||           - Period Pay Date                                                                                        ||");

  356.         System.out.println ("\t||           - Period Credit Label                                                                                    ||");

  357.         System.out.println ("\t||           - Period Funding Label                                                                                   ||");

  358.         System.out.println ("\t||           - Period Forward Label                                                                                   ||");

  359.         System.out.println ("\t||           - Period Coupon Rate (%)                                                                                 ||");

  360.         System.out.println ("\t||           - Period Coupon Year Fraction                                                                            ||");

  361.         System.out.println ("\t||           - Period Coupon Amount                                                                                   ||");

  362.         System.out.println ("\t||           - Period Principal Amount                                                                                ||");

  363.         System.out.println ("\t||           - Period Discount Factor                                                                                 ||");

  364.         System.out.println ("\t||           - Period Survival Probability                                                                            ||");

  365.         System.out.println ("\t||           - Period Recovery                                                                                        ||");

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

  367.         for (CompositePeriod p : bond.couponPeriods()) {
  368.             int iEndDate = p.endDate();

  369.             int iPayDate = p.payDate();

  370.             int iStartDate = p.startDate();

  371.             dblCouponRate = bond.couponMetrics (
  372.                 iEndDate,
  373.                 valParams,
  374.                 csqc
  375.             ).rate();

  376.             double dblCouponDCF = p.couponDCF();

  377.             System.out.println ("\t|| " +
  378.                 DateUtil.YYYYMMDD (iStartDate) + " => " +
  379.                 DateUtil.YYYYMMDD (iEndDate) + " | " +
  380.                 DateUtil.YYYYMMDD (iPayDate) + " | ? | " +
  381.                 p.fundingLabel().fullyQualifiedName() + " | ? | " +
  382.                 FormatUtil.FormatDouble (dblCouponRate, 1, 3, 100.) + "% | " +
  383.                 FormatUtil.FormatDouble (dblCouponDCF, 1, 4, 1.) + " | " +
  384.                 FormatUtil.FormatDouble (dblCouponRate * dblCouponDCF * p.notional (iEndDate) * p.couponFactor (iEndDate), 1, 6, 1.) + " | " +
  385.                 FormatUtil.FormatDouble (p.notional (iStartDate) - p.notional (iEndDate), 1, 4, 1.) + " | " +
  386.                 FormatUtil.FormatDouble (1., 1, 4, 1.) + " | " +
  387.                 FormatUtil.FormatDouble (1., 2, 2, 100.) + "% ||"
  388.             );
  389.         }

  390.         System.out.println ("\t|| " +
  391.             DateUtil.YYYYMMDD (dtEffective.julian()) + " => " +
  392.             DateUtil.YYYYMMDD (dtMaturity.julian()) + " | " +
  393.             DateUtil.YYYYMMDD (dtMaturity.julian()) + " | ? | " +
  394.             bond.fundingLabel().fullyQualifiedName() + " | ? | " +
  395.             FormatUtil.FormatDouble (0., 1, 3, 100.) + "% | " +
  396.             FormatUtil.FormatDouble (0., 1, 4, 1.) + " | " +
  397.             FormatUtil.FormatDouble (0., 1, 6, 1.) + " | " +
  398.             FormatUtil.FormatDouble (bond.notional (dtMaturity.julian()), 1, 4, 1.) + " | " +
  399.             FormatUtil.FormatDouble (1., 1, 4, 1.) + " | " +
  400.             FormatUtil.FormatDouble (1., 2, 2, 100.) + "% ||"
  401.         );

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

  403.         EnvManager.TerminateEnv();
  404.     }
  405. }