YAS_MBONO.java

  1. package org.drip.sample.treasury;

  2. import org.drip.analytics.cashflow.CompositePeriod;
  3. import org.drip.analytics.date.*;
  4. import org.drip.market.otc.*;
  5. import org.drip.numerical.common.FormatUtil;
  6. import org.drip.param.creator.*;
  7. import org.drip.param.market.CurveSurfaceQuoteContainer;
  8. import org.drip.param.valuation.ValuationParams;
  9. import org.drip.product.creator.*;
  10. import org.drip.product.credit.BondComponent;
  11. import org.drip.product.definition.CalibratableComponent;
  12. import org.drip.product.rates.FixFloatComponent;
  13. import org.drip.service.env.EnvManager;
  14. import org.drip.state.creator.ScenarioDiscountCurveBuilder;
  15. import org.drip.state.discount.MergedDiscountForwardCurve;
  16. import org.drip.state.identifier.ForwardLabel;

  17. /*!
  18.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  19.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  20.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  21.  *
  22.  *  This file is part of DRIP, a free-software/open-source library for buy/side financial/trading model
  23.  *      libraries targeting analysts and developers
  24.  *      https://lakshmidrip.github.io/DRIP/
  25.  *  
  26.  *  DRIP is composed of four main libraries:
  27.  *  
  28.  *  - DRIP Fixed Income - https://lakshmidrip.github.io/DRIP-Fixed-Income/
  29.  *  - DRIP Asset Allocation - https://lakshmidrip.github.io/DRIP-Asset-Allocation/
  30.  *  - DRIP Numerical Optimizer - https://lakshmidrip.github.io/DRIP-Numerical-Optimizer/
  31.  *  - DRIP Statistical Learning - https://lakshmidrip.github.io/DRIP-Statistical-Learning/
  32.  *
  33.  *  - DRIP Fixed Income: Library for Instrument/Trading Conventions, Treasury Futures/Options,
  34.  *      Funding/Forward/Overnight Curves, Multi-Curve Construction/Valuation, Collateral Valuation and XVA
  35.  *      Metric Generation, Calibration and Hedge Attributions, Statistical Curve Construction, Bond RV
  36.  *      Metrics, Stochastic Evolution and Option Pricing, Interest Rate Dynamics and Option Pricing, LMM
  37.  *      Extensions/Calibrations/Greeks, Algorithmic Differentiation, and Asset Backed Models and Analytics.
  38.  *
  39.  *  - DRIP Asset Allocation: Library for model libraries for MPT framework, Black Litterman Strategy
  40.  *      Incorporator, Holdings Constraint, and Transaction Costs.
  41.  *
  42.  *  - DRIP Numerical Optimizer: Library for Numerical Optimization and Spline Functionality.
  43.  *
  44.  *  - DRIP Statistical Learning: Library for Statistical Evaluation and Machine Learning.
  45.  *
  46.  *  Licensed under the Apache License, Version 2.0 (the "License");
  47.  *      you may not use this file except in compliance with the License.
  48.  *  
  49.  *  You may obtain a copy of the License at
  50.  *      http://www.apache.org/licenses/LICENSE-2.0
  51.  *  
  52.  *  Unless required by applicable law or agreed to in writing, software
  53.  *      distributed under the License is distributed on an "AS IS" BASIS,
  54.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  55.  *  
  56.  *  See the License for the specific language governing permissions and
  57.  *      limitations under the License.
  58.  */

  59. /**
  60.  * YAS_MBONO contains the sample demonstrating the replication of Bloomberg's Mexican MBONO MXN Bond YAS
  61.  *  Functionality.
  62.  *
  63.  * @author Lakshmi Krishnamurthy
  64.  */

  65. public class YAS_MBONO {

  66.     private static BondComponent TSYBond (
  67.         final JulianDate dtEffective,
  68.         final JulianDate dtMaturity,
  69.         final int iFreq,
  70.         final String strDayCount,
  71.         final String strCurrency,
  72.         final double dblCoupon)
  73.         throws Exception
  74.     {
  75.         return BondBuilder.CreateSimpleFixed (
  76.             "MBONO " + FormatUtil.FormatDouble (dblCoupon, 1, 2, 100.) + " " + dtMaturity,
  77.             strCurrency,
  78.             "",
  79.             dblCoupon,
  80.             iFreq,
  81.             strDayCount,
  82.             dtEffective,
  83.             dtMaturity,
  84.             null,
  85.             null
  86.         );
  87.     }

  88.     private static final FixFloatComponent OTCIRS (
  89.         final JulianDate dtSpot,
  90.         final String strCurrency,
  91.         final String strMaturityTenor,
  92.         final double dblCoupon)
  93.     {
  94.         FixedFloatSwapConvention ffConv = IBORFixedFloatContainer.ConventionFromJurisdiction (
  95.             strCurrency,
  96.             "ALL",
  97.             strMaturityTenor,
  98.             "MAIN"
  99.         );

  100.         return ffConv.createFixFloatComponent (
  101.             dtSpot,
  102.             strMaturityTenor,
  103.             dblCoupon,
  104.             0.,
  105.             1.
  106.         );
  107.     }

  108.     /*
  109.      * Sample demonstrating building of rates curve from cash/future/swaps
  110.      *
  111.      *      USE WITH CARE: This sample ignores errors and does not handle exceptions.
  112.      */

  113.     private static MergedDiscountForwardCurve BuildRatesCurveFromInstruments (
  114.         final JulianDate dtStart,
  115.         final String[] astrCashTenor,
  116.         final double[] adblCashRate,
  117.         final String[] astrIRSTenor,
  118.         final double[] adblIRSRate,
  119.         final double dblBump,
  120.         final String strCurrency)
  121.         throws Exception
  122.     {
  123.         int iNumDCInstruments = astrCashTenor.length + adblIRSRate.length;
  124.         int aiDate[] = new int[iNumDCInstruments];
  125.         double adblRate[] = new double[iNumDCInstruments];
  126.         String astrCalibMeasure[] = new String[iNumDCInstruments];
  127.         double adblCompCalibValue[] = new double[iNumDCInstruments];
  128.         CalibratableComponent aCompCalib[] = new CalibratableComponent[iNumDCInstruments];

  129.         // Cash Calibration

  130.         JulianDate dtCashEffective = dtStart.addBusDays (
  131.             1,
  132.             strCurrency
  133.         );

  134.         for (int i = 0; i < astrCashTenor.length; ++i) {
  135.             astrCalibMeasure[i] = "Rate";
  136.             adblRate[i] = java.lang.Double.NaN;
  137.             adblCompCalibValue[i] = adblCashRate[i] + dblBump;

  138.             aCompCalib[i] = SingleStreamComponentBuilder.Deposit (
  139.                 dtCashEffective,
  140.                 new JulianDate (aiDate[i] = dtCashEffective.addTenor (astrCashTenor[i]).julian()),
  141.                 ForwardLabel.Create (
  142.                     strCurrency,
  143.                     astrCashTenor[i]
  144.                 )
  145.             );
  146.         }

  147.         // IRS Calibration

  148.         JulianDate dtIRSEffective = dtStart.addBusDays (2, strCurrency);

  149.         for (int i = 0; i < astrIRSTenor.length; ++i) {
  150.             astrCalibMeasure[i + astrCashTenor.length] = "Rate";
  151.             adblRate[i + astrCashTenor.length] = java.lang.Double.NaN;
  152.             adblCompCalibValue[i + astrCashTenor.length] = adblIRSRate[i] + dblBump;

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

  154.             aCompCalib[i + astrCashTenor.length] = OTCIRS (
  155.                 dtIRSEffective,
  156.                 strCurrency,
  157.                 astrIRSTenor[i],
  158.                 0.
  159.             );
  160.         }

  161.         /*
  162.          * Build the IR curve from the components, their calibration measures, and their calibration quotes.
  163.          */

  164.         return ScenarioDiscountCurveBuilder.NonlinearBuild (
  165.             dtStart,
  166.             strCurrency,
  167.             aCompCalib,
  168.             adblCompCalibValue,
  169.             astrCalibMeasure,
  170.             null
  171.         );
  172.     }

  173.     private static final MergedDiscountForwardCurve FundingCurve (
  174.         final JulianDate dtSpot,
  175.         final String strCurrency)
  176.         throws Exception
  177.     {
  178.         String[] astrCashTenor = new String[] {"3M"};
  179.         double[] adblCashRate = new double[] {0.00276};
  180.         String[] astrIRSTenor = new String[] {   "1Y",    "2Y",    "3Y",    "4Y",    "5Y",    "6Y",    "7Y",
  181.                "8Y",    "9Y",   "10Y",   "11Y",   "12Y",   "15Y",   "20Y",   "25Y",   "30Y",   "40Y",   "50Y"};
  182.         double[] adblIRSRate = new double[]  {0.00367, 0.00533, 0.00843, 0.01238, 0.01609, 0.01926, 0.02191,
  183.             0.02406, 0.02588, 0.02741, 0.02870, 0.02982, 0.03208, 0.03372, 0.03445, 0.03484, 0.03501, 0.03484};

  184.         return BuildRatesCurveFromInstruments (
  185.             dtSpot,
  186.             astrCashTenor,
  187.             adblCashRate,
  188.             astrIRSTenor,
  189.             adblIRSRate,
  190.             0.,
  191.             strCurrency
  192.         );
  193.     }

  194.     private static final void TSYMetrics (
  195.         final BondComponent tsyBond,
  196.         final double dblNotional,
  197.         final JulianDate dtSettle,
  198.         final CurveSurfaceQuoteContainer mktParams,
  199.         final double dblCleanPrice)
  200.         throws Exception
  201.     {
  202.         double dblAccrued = tsyBond.accrued (
  203.             dtSettle.julian(),
  204.             null
  205.         );

  206.         ValuationParams valParams = ValuationParams.Spot (dtSettle.julian());

  207.         double dblYield = tsyBond.yieldFromPrice (
  208.             valParams,
  209.             mktParams,
  210.             null,
  211.             dblCleanPrice
  212.         );

  213.         double dblModifiedDuration = tsyBond.modifiedDurationFromPrice (
  214.             valParams,
  215.             mktParams,
  216.             null,
  217.             dblCleanPrice
  218.         );

  219.         double dblRisk = tsyBond.yield01FromPrice (
  220.             valParams,
  221.             mktParams,
  222.             null,
  223.             dblCleanPrice
  224.         );

  225.         double dblConvexity = tsyBond.convexityFromPrice (
  226.             valParams,
  227.             mktParams,
  228.             null,
  229.             dblCleanPrice
  230.         );

  231.         JulianDate dtPreviousCouponDate = tsyBond.previousCouponDate (dtSettle);

  232.         System.out.println();

  233.         System.out.println ("\t\t" + tsyBond.name());

  234.         System.out.println ("\tPrice             : " + FormatUtil.FormatDouble (dblCleanPrice, 1, 4, 100.));

  235.         System.out.println ("\tYield             : " + FormatUtil.FormatDouble (dblYield, 1, 4, 100.) + "%");

  236.         System.out.println ("\tSettle            :  " + dtSettle);

  237.         System.out.println();

  238.         System.out.println ("\tModified Duration : " + FormatUtil.FormatDouble (dblModifiedDuration, 1, 4, 10000.));

  239.         System.out.println ("\tRisk              : " + FormatUtil.FormatDouble (dblRisk, 1, 4, 10000.));

  240.         System.out.println ("\tConvexity         : " + FormatUtil.FormatDouble (dblConvexity * dblNotional, 1, 4, 1.));

  241.         System.out.println ("\tDV01              : " + FormatUtil.FormatDouble (dblRisk * dblNotional, 1, 0, 1.));

  242.         System.out.println();

  243.         System.out.println ("\tPrevious Coupon Date :  " + dtPreviousCouponDate);

  244.         System.out.println ("\tFace                 : " + FormatUtil.FormatDouble (dblNotional, 1, 2, 1.));

  245.         System.out.println ("\tPrincipal            : " + FormatUtil.FormatDouble (dblCleanPrice * dblNotional, 1, 2, 1.));

  246.         System.out.println ("\tAccruedDCF           : " + FormatUtil.FormatDouble (dblAccrued, 1, 6, 1.));

  247.         System.out.println ("\tAccrued              : " + FormatUtil.FormatDouble (dblAccrued * dblNotional, 1, 2, 1.));

  248.         System.out.println ("\tTotal                : " + FormatUtil.FormatDouble ((dblCleanPrice + dblAccrued) * dblNotional, 1, 2, 1.));

  249.         System.out.println ("\tAccrual Days         : " + (dtSettle.julian() - dtPreviousCouponDate.julian()));
  250.     }

  251.     public static final void main (
  252.         final String astrArgs[])
  253.         throws Exception
  254.     {
  255.         EnvManager.InitEnv ("");

  256.         JulianDate dtSpot = DateUtil.CreateFromYMD (
  257.             2016,
  258.             DateUtil.MARCH,
  259.             30
  260.         );

  261.         JulianDate dtEffective = DateUtil.CreateFromYMD (
  262.             2011,
  263.             DateUtil.NOVEMBER,
  264.             20
  265.         );

  266.         JulianDate dtMaturity = DateUtil.CreateFromYMD (
  267.             2036,
  268.             DateUtil.NOVEMBER,
  269.             20
  270.         );

  271.         int iFreq = 2;
  272.         String strDayCount = "Act/364";
  273.         String strCurrency = "MXN";
  274.         double dblCoupon = 0.10;
  275.         double dblNotional = 100000000.;
  276.         double dblCleanPrice = 1.35213;

  277.         BondComponent tsyBond = TSYBond (
  278.             dtEffective,
  279.             dtMaturity,
  280.             iFreq,
  281.             strDayCount,
  282.             strCurrency,
  283.             dblCoupon
  284.         );

  285.         System.out.println();

  286.         System.out.println ("\tEffective : " + tsyBond.effectiveDate());

  287.         System.out.println ("\tMaturity  : " + tsyBond.maturityDate());

  288.         System.out.println();

  289.         MergedDiscountForwardCurve dc = FundingCurve (
  290.             dtSpot,
  291.             strCurrency
  292.         );

  293.         TSYMetrics (
  294.             tsyBond,
  295.             dblNotional,
  296.             dtSpot,
  297.             MarketParamsBuilder.Create (
  298.                 dc,
  299.                 null,
  300.                 null,
  301.                 null,
  302.                 null,
  303.                 null,
  304.                 null
  305.             ),
  306.             dblCleanPrice
  307.         );

  308.         System.out.println ("\n\tCashflow\n\t--------");

  309.         for (CompositePeriod p : tsyBond.couponPeriods())
  310.             System.out.println ("\t\t" +
  311.                 DateUtil.YYYYMMDD (p.startDate()) + " | " +
  312.                 DateUtil.YYYYMMDD (p.endDate()) + " | " +
  313.                 DateUtil.YYYYMMDD (p.payDate()) + " | " +
  314.                 FormatUtil.FormatDouble (p.couponDCF(), 1, 4, 1.) + " ||"
  315.             );
  316.     }
  317. }