WN1_ULTRA.java

  1. package org.drip.template.ust;

  2. import org.drip.analytics.date.*;
  3. import org.drip.numerical.common.FormatUtil;
  4. import org.drip.product.definition.Bond;
  5. import org.drip.product.govvie.TreasuryFutures;
  6. import org.drip.service.env.EnvManager;
  7. import org.drip.service.template.ExchangeInstrumentBuilder;

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

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

  84. /**
  85.  * <i>WN1_ULTRA</i> demonstrates the Details behind the Implementation and the Pricing of the ULTRA LONG BOND
  86.  * WN1 UST Futures Contract.
  87.  *
  88.  *  <br><br>
  89.  *  <ul>
  90.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  91.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  92.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/template/README.md">Pricing/Risk Templates for Fixed Income Component Products</a></li>
  93.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/template/ust/README.md">Standard UST Suite Construction Template</a></li>
  94.  *  </ul>
  95.  * <br><br>
  96.  *
  97.  * @author Lakshmi Krishnamurthy
  98.  */

  99. public class WN1_ULTRA {

  100.     private static final String DeliveryMonths (
  101.         final TreasuryFutures tsyFutures)
  102.     {
  103.         int[] aiDeliveryMonth = tsyFutures.deliveryMonths();

  104.         String strDeliveryMonths = "";
  105.         int iNumDeliveryMonth = null == aiDeliveryMonth ? 0 : aiDeliveryMonth.length;

  106.         if (0 != iNumDeliveryMonth) {
  107.             for (int i = 0; i < iNumDeliveryMonth; ++i) {
  108.                 if (0 == i)
  109.                     strDeliveryMonths += "{";
  110.                 else
  111.                     strDeliveryMonths += ",";

  112.                 strDeliveryMonths += DateUtil.MonthChar (aiDeliveryMonth[i]);
  113.             }

  114.             strDeliveryMonths += "}";
  115.         }

  116.         return strDeliveryMonths;
  117.     }

  118.     public static final void main (
  119.         final String[] astrArgs)
  120.         throws Exception
  121.     {
  122.         EnvManager.InitEnv ("");

  123.         JulianDate dtSpot = DateUtil.CreateFromYMD (
  124.             2015,
  125.             DateUtil.NOVEMBER,
  126.             18
  127.         );

  128.         TreasuryFutures wn1 = ExchangeInstrumentBuilder.TreasuryFutures (
  129.             dtSpot,
  130.             "UST",
  131.             new org.drip.analytics.date.JulianDate[] {
  132.                 DateUtil.CreateFromYMD (2014, DateUtil.FEBRUARY, 15), // 912810QN
  133.                 DateUtil.CreateFromYMD (2014, DateUtil.MAY,      15), // 912810QQ
  134.                 DateUtil.CreateFromYMD (2014, DateUtil.AUGUST,   15), // 912810QS
  135.                 DateUtil.CreateFromYMD (2014, DateUtil.AUGUST,   15), // 912810RC
  136.                 DateUtil.CreateFromYMD (2014, DateUtil.NOVEMBER, 15), // 912810RD
  137.                 DateUtil.CreateFromYMD (2014, DateUtil.NOVEMBER, 15), // 912810QT
  138.                 DateUtil.CreateFromYMD (2014, DateUtil.FEBRUARY, 15), // 912810QU
  139.                 DateUtil.CreateFromYMD (2014, DateUtil.FEBRUARY, 15), // 912810RE
  140.                 DateUtil.CreateFromYMD (2014, DateUtil.FEBRUARY, 15), // 912810QZ
  141.                 DateUtil.CreateFromYMD (2014, DateUtil.MAY,      15), // 912810QW
  142.                 DateUtil.CreateFromYMD (2014, DateUtil.MAY,      15), // 912810RG
  143.                 DateUtil.CreateFromYMD (2014, DateUtil.AUGUST,   15), // 912810QX
  144.                 DateUtil.CreateFromYMD (2014, DateUtil.MAY,      15), // 912810RB
  145.                 DateUtil.CreateFromYMD (2014, DateUtil.NOVEMBER, 15), // 912810QY
  146.                 DateUtil.CreateFromYMD (2014, DateUtil.AUGUST,   15), // 912810RH
  147.                 DateUtil.CreateFromYMD (2014, DateUtil.NOVEMBER, 15), // 912810RJ
  148.                 DateUtil.CreateFromYMD (2014, DateUtil.MAY,      15), // 912810RM
  149.                 DateUtil.CreateFromYMD (2014, DateUtil.NOVEMBER, 15), // 912810RP
  150.                 DateUtil.CreateFromYMD (2014, DateUtil.AUGUST,   15), // 912810RN
  151.                 DateUtil.CreateFromYMD (2014, DateUtil.FEBRUARY, 15)  // 912810RK
  152.             },
  153.             new org.drip.analytics.date.JulianDate[] {
  154.                 DateUtil.CreateFromYMD (2041, DateUtil.FEBRUARY, 15), // 912810QN
  155.                 DateUtil.CreateFromYMD (2041, DateUtil.MAY,      15), // 912810QQ
  156.                 DateUtil.CreateFromYMD (2041, DateUtil.AUGUST,   15), // 912810QS
  157.                 DateUtil.CreateFromYMD (2043, DateUtil.AUGUST,   15), // 912810RC
  158.                 DateUtil.CreateFromYMD (2043, DateUtil.NOVEMBER, 15), // 912810RD
  159.                 DateUtil.CreateFromYMD (2041, DateUtil.NOVEMBER, 15), // 912810QT
  160.                 DateUtil.CreateFromYMD (2043, DateUtil.FEBRUARY, 15), // 912810QU
  161.                 DateUtil.CreateFromYMD (2044, DateUtil.FEBRUARY, 15), // 912810RE
  162.                 DateUtil.CreateFromYMD (2043, DateUtil.FEBRUARY, 15), // 912810QZ
  163.                 DateUtil.CreateFromYMD (2042, DateUtil.MAY,      15), // 912810QW
  164.                 DateUtil.CreateFromYMD (2044, DateUtil.MAY,      15), // 912810RG
  165.                 DateUtil.CreateFromYMD (2042, DateUtil.AUGUST,   15), // 912810QX
  166.                 DateUtil.CreateFromYMD (2043, DateUtil.MAY,      15), // 912810RB
  167.                 DateUtil.CreateFromYMD (2042, DateUtil.NOVEMBER, 15), // 912810QY
  168.                 DateUtil.CreateFromYMD (2044, DateUtil.AUGUST,   15), // 912810RH
  169.                 DateUtil.CreateFromYMD (2044, DateUtil.NOVEMBER, 15), // 912810RJ
  170.                 DateUtil.CreateFromYMD (2045, DateUtil.MAY,      15), // 912810RM
  171.                 DateUtil.CreateFromYMD (2045, DateUtil.NOVEMBER, 15), // 912810RP
  172.                 DateUtil.CreateFromYMD (2045, DateUtil.AUGUST,   15), // 912810RN
  173.                 DateUtil.CreateFromYMD (2045, DateUtil.FEBRUARY, 15)  // 912810RK
  174.             },
  175.             new double[] {
  176.                 0.04750, // 912810QN
  177.                 0.04375, // 912810QQ
  178.                 0.03750, // 912810QS
  179.                 0.03625, // 912810RC
  180.                 0.03750, // 912810RD
  181.                 0.03125, // 912810QT
  182.                 0.03125, // 912810QU
  183.                 0.03625, // 912810RE
  184.                 0.03125, // 912810QZ
  185.                 0.03000, // 912810QW
  186.                 0.03625, // 912810RG
  187.                 0.02375, // 912810QX
  188.                 0.02875, // 912810RB
  189.                 0.02750, // 912810QY
  190.                 0.03125, // 912810RH
  191.                 0.03000, // 912810RJ
  192.                 0.03000, // 912810RM
  193.                 0.03000, // 912810RP
  194.                 0.02875, // 912810RN
  195.                 0.02500  // 912810RK
  196.             },
  197.             new double[] {
  198.                 0.8392, // 912810QN
  199.                 0.7900, // 912810QQ
  200.                 0.7080, // 912810QS
  201.                 0.6821, // 912810RC
  202.                 0.6976, // 912810RD
  203.                 0.6253, // 912810QT
  204.                 0.6239, // 912810QU
  205.                 0.6798, // 912810RE
  206.                 0.6179, // 912810QZ
  207.                 0.6059, // 912810QW
  208.                 0.6448, // 912810RG
  209.                 0.5714, // 912810QX
  210.                 0.5831, // 912810RB
  211.                 0.5697, // 912810QY
  212.                 0.6097, // 912810RH
  213.                 0.5913, // 912810RJ
  214.                 0.5887, // 912810RM
  215.                 0.5861, // 912810RP
  216.                 0.5702, // 912810RN
  217.                 0.5217, // 912810RK
  218.             },
  219.             "TREASURY",
  220.             "BOND",
  221.             "ULTRA"
  222.         );

  223.         double dblFuturesPrice = 156.687500;

  224.         double[] adblCleanPrice = new double[] {
  225.             1.3200000, // 912810QN
  226.             1.2540625, // 912810QQ
  227.             1.1412500, // 912810QS
  228.             1.1193750, // 912810RC
  229.             1.1450000, // 912810RD
  230.             1.0262500, // 912810QT
  231.             1.0256250, // 912810QU
  232.             1.1184375, // 912810RE
  233.             1.0181250, // 912810QZ
  234.             0.9990625, // 912810QW
  235.             1.0659375, // 912810RG
  236.             0.9481250, // 912810QX
  237.             0.9681250, // 912810RB
  238.             0.9459375, // 912810QY
  239.             1.0153125, // 912810RH
  240.             0.9896875, // 912810RJ
  241.             0.9890625, // 912810RM
  242.             0.9918750, // 912810RP
  243.             0.9656250, // 912810RN
  244.             0.8909375  // 912810RK
  245.         };

  246.         Bond bondCTD = wn1.cheapestToDeliverYield (
  247.             dtSpot.julian(),
  248.             adblCleanPrice
  249.         ).bond();

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

  251.         System.out.println ("\t|      Futures Type      : " + wn1.type() + "                            ||");

  252.         System.out.println ("\t|      Deliverable Grade : " + wn1.minimumMaturity() + " -> " + wn1.maximumMaturity() + "                     ||");

  253.         System.out.println ("\t|      Reference Coupon  : " + FormatUtil.FormatDouble (wn1.referenceCoupon(), 1, 2, 100.) + "%                         ||");

  254.         System.out.println ("\t|      Contract Size     : " + FormatUtil.FormatDouble (wn1.notionalValue(), 1, 2, 1.) + "                     ||");

  255.         System.out.println ("\t|      Tick Size         : " + FormatUtil.FormatDouble (wn1.minimumPriceMovement(), 1, 6, 1.) + "                      ||");

  256.         System.out.println ("\t|      Tick Value        : " + FormatUtil.FormatDouble (wn1.tickValue(), 1, 2, 1.) + "                       ||");

  257.         System.out.println ("\t|      Delivery Months   : " + DeliveryMonths (wn1) + " ||");

  258.         System.out.println ("\t|      Last Trading Lag  : " + wn1.lastTradingDayLag() + " Business Days Prior Expiry   ||");

  259.         System.out.println ("\t|      Futures Price     : " + FormatUtil.FormatDouble (dblFuturesPrice, 2, 5, 1.) + "                     ||");

  260.         System.out.println ("\t|      Contract Value    : " + FormatUtil.FormatDouble (0.01 * wn1.notionalValue() * dblFuturesPrice, 1, 2, 1.) + "                     ||");

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

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

  263.         System.out.println ("\t|                                              ||");

  264.         for (int i = 0; i < wn1.basket().length; ++i)
  265.             System.out.println ("\t|\t" + wn1.basket()[i].name() + " => " + FormatUtil.FormatDouble (adblCleanPrice[i], 2, 5, 1.) + "   ||");

  266.         System.out.println ("\t|                                              ||");

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

  268.         System.out.println ("\t| Cheapest to Deliver: " + bondCTD.name() + "  ||");

  269.         System.out.println ("\t|----------------------------------------------||");
  270.     }
  271. }