TreasuryFuturesEligibility.java

  1. package org.drip.market.exchange;

  2. /*
  3.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  4.  */

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

  78. /**
  79.  * <i>TreasuryFuturesEligibility</i> contains the Eligibility Criterion for a Bond in the Futures Basket of
  80.  * the Exchange-Traded Treasury Futures Contracts.
  81.  *
  82.  *  <br><br>
  83.  *  <ul>
  84.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  85.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics Library</a></li>
  86.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/market">Static Market Fields - the Definitions, the OTC/Exchange Traded Products, and Treasury Settings</a></li>
  87.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/market/exchange">Deliverable Swap, STIR, Treasury Futures</a></li>
  88.  *  </ul>
  89.  *
  90.  * @author Lakshmi Krishnamurthy
  91.  */

  92. public class TreasuryFuturesEligibility {
  93.     private java.lang.String[] _astrIssuer = null;
  94.     private java.lang.String _strMaturityFloor = "";
  95.     private java.lang.String _strMaturityCeiling = "";
  96.     private double _dblMinimumOutstandingNotional = java.lang.Double.NaN;

  97.     /**
  98.      * TreasuryFuturesEligibility Constructor
  99.      *
  100.      * @param strMaturityFloor Maturity Floor
  101.      * @param strMaturityCeiling Maturity Floor
  102.      * @param astrIssuer Array of Issuers
  103.      * @param dblMinimumOutstandingNotional Minimum Outstanding Notional
  104.      *
  105.      * @throws java.lang.Exception Thrown if the Inputs are invalid
  106.      */

  107.     public TreasuryFuturesEligibility (
  108.         final java.lang.String strMaturityFloor,
  109.         final java.lang.String strMaturityCeiling,
  110.         final java.lang.String[] astrIssuer,
  111.         final double dblMinimumOutstandingNotional)
  112.         throws java.lang.Exception
  113.     {
  114.         if (null == (_strMaturityFloor = strMaturityFloor) || _strMaturityFloor.isEmpty() || null ==
  115.             (_strMaturityCeiling = strMaturityCeiling) || _strMaturityCeiling.isEmpty() ||
  116.                 !org.drip.numerical.common.NumberUtil.IsValid (_dblMinimumOutstandingNotional =
  117.                     dblMinimumOutstandingNotional))
  118.             throw new java.lang.Exception ("TreasuryFuturesEligibility ctr: Invalid Inputs");

  119.         if (null != (_astrIssuer = astrIssuer)) {
  120.             int iNumIssuer = _astrIssuer.length;

  121.             for (int i = 0; i < iNumIssuer; ++i) {
  122.                 if (null == _astrIssuer[i] || _astrIssuer[i].isEmpty())
  123.                     throw new java.lang.Exception ("TreasuryFuturesEligibility ctr: Invalid Issuer");
  124.             }
  125.         }
  126.     }

  127.     /**
  128.      * Retrieve the Eligible Maturity Floor
  129.      *
  130.      * @return Array of Eligible Maturity Floor
  131.      */

  132.     public java.lang.String maturityFloor()
  133.     {
  134.         return _strMaturityFloor;
  135.     }

  136.     /**
  137.      * Retrieve the Eligible Maturity Ceiling
  138.      *
  139.      * @return Array of Eligible Maturity Ceiling
  140.      */

  141.     public java.lang.String maturityCeiling()
  142.     {
  143.         return _strMaturityCeiling;
  144.     }

  145.     /**
  146.      * Retrieve the Array of Eligible Issuers
  147.      *
  148.      * @return Array of Eligible Issuers
  149.      */

  150.     public java.lang.String[] issuer()
  151.     {
  152.         return _astrIssuer;
  153.     }

  154.     /**
  155.      * Retrieve the Minimum Outstanding Notional
  156.      *
  157.      * @return The Minimum Outstanding Notional
  158.      */

  159.     public double minimumOutstandingNotional()
  160.     {
  161.         return _dblMinimumOutstandingNotional;
  162.     }

  163.     /**
  164.      * Indicate whether the given bond is eligible to be delivered
  165.      *
  166.      * @param dtValue The Value Date
  167.      * @param bond The Bond whose Eligibility is to be evaluated
  168.      * @param dblOutstandingNotional The Outstanding Notional
  169.      * @param strIssuer The Issuer
  170.      *
  171.      * @return TRUE - The given bond is eligible to be delivered
  172.      */

  173.     public boolean isEligible (
  174.         final org.drip.analytics.date.JulianDate dtValue,
  175.         final org.drip.product.definition.Bond bond,
  176.         final double dblOutstandingNotional,
  177.         final java.lang.String strIssuer)
  178.     {
  179.         if (null == bond || null == dtValue) return false;

  180.         org.drip.analytics.date.JulianDate dtFloorMaturity = dtValue.addTenor (_strMaturityFloor);

  181.         org.drip.analytics.date.JulianDate dtCeilingMaturity = dtValue.addTenor (_strMaturityCeiling);

  182.         if (null == dtFloorMaturity || null == dtFloorMaturity) return false;

  183.         int iValueDate = dtValue.julian();

  184.         if (iValueDate < dtFloorMaturity.julian() || iValueDate > dtCeilingMaturity.julian()) return false;

  185.         if (0. != _dblMinimumOutstandingNotional && org.drip.numerical.common.NumberUtil.IsValid
  186.             (dblOutstandingNotional) && dblOutstandingNotional < _dblMinimumOutstandingNotional)
  187.             return false;

  188.         if (null == strIssuer || strIssuer.isEmpty() || null == _astrIssuer) return true;

  189.         int iNumIssuer = _astrIssuer.length;

  190.         if (0 == iNumIssuer) return true;

  191.         for (int i = 0; i < iNumIssuer; ++i) {
  192.             if (_astrIssuer[i].equalsIgnoreCase (strIssuer)) return true;
  193.         }

  194.         return false;
  195.     }

  196.     @Override public java.lang.String toString()
  197.     {
  198.         java.lang.String strDump = "[Futures Eligibility => Maturity Band: " + _strMaturityFloor + " -> " +
  199.             _strMaturityCeiling + "] [Issuers: ";

  200.         if (null == _astrIssuer) return strDump + "]";

  201.         for (int i = 0; i < _astrIssuer.length; ++i) {
  202.             if (0 != i) strDump += " | ";

  203.             strDump += _astrIssuer[i];
  204.         }

  205.         return strDump + "] [Minimum Outstanding Notional: " + _dblMinimumOutstandingNotional + "]";
  206.     }
  207. }