TreasuryFuturesOptionConvention.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>TreasuryFuturesOptionConvention</i> contains the Details for the Exchange-Traded Options of the
  80.  * 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 TreasuryFuturesOptionConvention {
  93.     private boolean _bPremiumType = false;
  94.     private java.lang.String[] _astrCode = null;
  95.     private double _dblNotional = java.lang.Double.NaN;
  96.     private java.lang.String _strTreasuryFuturesIndex = "";
  97.     private org.drip.product.params.LastTradingDateSetting[] _aLTDS = null;

  98.     /**
  99.      * TreasuryFuturesOptionConvention Constructor
  100.      *
  101.      * @param astrCode Array of Option Codes
  102.      * @param strTreasuryFuturesIndex Underlying Futures Index
  103.      * @param dblNotional Exchange Notional
  104.      * @param bPremiumType TRUE - Premium Up-front Type; FALSE - Margin Type
  105.      * @param aLTDS Array of Last Trading Date Settings
  106.      *
  107.      * @throws java.lang.Exception Thrown if the Inputs are invalid
  108.      */

  109.     public TreasuryFuturesOptionConvention (
  110.         final java.lang.String[] astrCode,
  111.         final java.lang.String strTreasuryFuturesIndex,
  112.         final double dblNotional,
  113.         final boolean bPremiumType,
  114.         final org.drip.product.params.LastTradingDateSetting[] aLTDS)
  115.         throws java.lang.Exception
  116.     {
  117.         if (null == (_astrCode = astrCode) || null == (_strTreasuryFuturesIndex = strTreasuryFuturesIndex) ||
  118.             !org.drip.numerical.common.NumberUtil.IsValid (_dblNotional = dblNotional) || null == (_aLTDS =
  119.                 aLTDS))
  120.             throw new java.lang.Exception ("TreasuryFuturesOptionConvention ctr: Invalid Inputs!");

  121.         _bPremiumType = bPremiumType;
  122.         int iNumLTDS = _aLTDS.length;
  123.         int iNumCode = _astrCode.length;

  124.         if (0 == iNumLTDS || 0 == iNumCode)
  125.             throw new java.lang.Exception ("TreasuryFuturesOptionConvention ctr: Invalid Inputs!");

  126.         for (java.lang.String strCode : _astrCode) {
  127.             if (null == strCode || strCode.isEmpty())
  128.                 throw new java.lang.Exception ("TreasuryFuturesOptionConvention ctr: Invalid Inputs!");
  129.         }

  130.         for (org.drip.product.params.LastTradingDateSetting ltds : _aLTDS) {
  131.             if (null == ltds)
  132.                 throw new java.lang.Exception ("TreasuryFuturesOptionConvention ctr: Invalid Inputs!");
  133.         }
  134.     }

  135.     /**
  136.      * Retrieve the Array of the Exchange Codes
  137.      *
  138.      * @return The Array of the Exchange Codes
  139.      */

  140.     public java.lang.String[] codes()
  141.     {
  142.         return _astrCode;
  143.     }

  144.     /**
  145.      * Retrieve the Array of Last Trading Date Settings
  146.      *
  147.      * @return The Array of Last Trading Date Settings
  148.      */

  149.     public org.drip.product.params.LastTradingDateSetting[] ltds()
  150.     {
  151.         return _aLTDS;
  152.     }

  153.     /**
  154.      * Retrieve the Treasury Futures Index
  155.      *
  156.      * @return The Treasury Futures Index
  157.      */

  158.     public java.lang.String FuturesIndex()
  159.     {
  160.         return _strTreasuryFuturesIndex;
  161.     }

  162.     /**
  163.      * Retrieve the Option Exchange Notional
  164.      *
  165.      * @return The Option Exchange Notional
  166.      */

  167.     public double notional()
  168.     {
  169.         return _dblNotional;
  170.     }

  171.     /**
  172.      * Retrieve the Trading Type PREMIUM/MARGIN
  173.      *
  174.      * @return TRUE - Trading Type is PREMIUM
  175.      */

  176.     public boolean premiumType()
  177.     {
  178.         return _bPremiumType;
  179.     }

  180.     @Override public java.lang.String toString()
  181.     {
  182.         java.lang.String strDump = "TreasuryFuturesIndex: " + _strTreasuryFuturesIndex + " | Premium Type: "
  183.             + (_bPremiumType ? "PREMIUM" : "MARGIN ");

  184.         for (int i = 0; i < _astrCode.length; ++i) {
  185.             if (0 == i)
  186.                 strDump += " | CODES => {";
  187.             else
  188.                 strDump += ", ";

  189.             strDump += _astrCode[i];

  190.             if (_astrCode.length - 1 == i) strDump += "}";
  191.         }

  192.         for (int i = 0; i < _aLTDS.length; ++i)
  193.             strDump += "\n\t" + _aLTDS[i];

  194.         return strDump;
  195.     }
  196. }