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

  60. /**
  61.  * YAS_UST contains the sample demonstrating the replication of Bloomberg's UST YAS functionality.
  62.  *
  63.  * @author Lakshmi Krishnamurthy
  64.  */

  65. public class YAS_UST {

  66.     private static BondComponent TSYBond (
  67.         final JulianDate dtEffective,
  68.         final String strMaturityTenor,
  69.         final String strCurrency,
  70.         final double dblCoupon)
  71.         throws Exception
  72.     {
  73.         return BondBuilder.CreateSimpleFixed (
  74.             "UST_" + strMaturityTenor,
  75.             strCurrency,
  76.             "",
  77.             dblCoupon,
  78.             2,
  79.             "DCAct_Act_UST",
  80.             dtEffective,
  81.             dtEffective.addTenor (strMaturityTenor),
  82.             null,
  83.             null
  84.         );
  85.     }

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

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

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

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

  127.         // Cash Calibration

  128.         JulianDate dtCashEffective = dtStart.addBusDays (
  129.             1,
  130.             strCurrency
  131.         );

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

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

  145.         // IRS Calibration

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

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

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

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

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

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

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

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

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

  204.         double dblYield = tsyBond.yieldFromPrice (
  205.             new ValuationParams (
  206.                 dtSettle,
  207.                 dtSettle,
  208.                 tsyBond.currency()
  209.             ),
  210.             mktParams,
  211.             null,
  212.             dblCleanPrice
  213.         );

  214.         double dblModifiedDuration = tsyBond.modifiedDurationFromPrice (
  215.             new ValuationParams (
  216.                 dtSettle,
  217.                 dtSettle,
  218.                 tsyBond.currency()
  219.             ),
  220.             mktParams,
  221.             null,
  222.             dblCleanPrice
  223.         );

  224.         double dblRisk = tsyBond.yield01FromPrice (
  225.             new ValuationParams (
  226.                 dtSettle,
  227.                 dtSettle,
  228.                 tsyBond.currency()
  229.             ),
  230.             mktParams,
  231.             null,
  232.             dblCleanPrice
  233.         );

  234.         System.out.println();

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

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

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

  238.         System.out.println();

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

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

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

  243.     public static final void main (
  244.         final String astrArgs[])
  245.         throws Exception
  246.     {
  247.         EnvManager.InitEnv ("");

  248.         JulianDate dtSpot = DateUtil.CreateFromYMD (
  249.             2015,
  250.             DateUtil.JULY,
  251.             1
  252.         );

  253.         JulianDate dtEffective = DateUtil.CreateFromYMD (
  254.             2014,
  255.             DateUtil.DECEMBER,
  256.             31
  257.         );

  258.         String strMaturityTenor = "7Y";
  259.         String strCurrency = "USD";
  260.         double dblCoupon = 0.02125;
  261.         double dblNotional = 1000000.;
  262.         double dblCleanPrice = 1.02;

  263.         BondComponent tsyBond = TSYBond (
  264.             dtEffective,
  265.             strMaturityTenor,
  266.             strCurrency,
  267.             dblCoupon
  268.         );

  269.         System.out.println();

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

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

  272.         System.out.println();

  273.         MergedDiscountForwardCurve dc = FundingCurve (
  274.             dtSpot,
  275.             strCurrency
  276.         );

  277.         TSYMetrics (
  278.             tsyBond,
  279.             dblNotional,
  280.             dtSpot,
  281.             MarketParamsBuilder.Create (
  282.                 dc,
  283.                 null,
  284.                 null,
  285.                 null,
  286.                 null,
  287.                 null,
  288.                 null
  289.             ),
  290.             dblCleanPrice
  291.         );

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

  293.         for (CompositePeriod p : tsyBond.couponPeriods())
  294.             System.out.println ("\t\t" +
  295.                 DateUtil.YYYYMMDD (p.startDate()) + " | " +
  296.                 DateUtil.YYYYMMDD (p.endDate()) + " | " +
  297.                 DateUtil.YYYYMMDD (p.payDate()) + " | " +
  298.                 FormatUtil.FormatDouble (p.couponDCF(), 1, 4, 1.) + " ||"
  299.             );
  300.     }
  301. }