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

  79. /**
  80.  * <i>FuturesOptionsContainer</i> holds the short term futures options 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 FuturesOptionsContainer {
  93.     private static java.util.Map<java.lang.String, org.drip.market.exchange.FuturesOptions>
  94.         _mapFuturesOptions = null;

  95.     /**
  96.      * Initialize the Overnight Index Container with the Overnight Indexes
  97.      *
  98.      * @return TRUE - The Overnight Index Container successfully initialized with the indexes
  99.      */

  100.     public static final boolean Init()
  101.     {
  102.         if (null != _mapFuturesOptions) return true;

  103.         _mapFuturesOptions = new
  104.             java.util.TreeMap<java.lang.String, org.drip.market.exchange.FuturesOptions>();

  105.         try {
  106.             org.drip.product.params.LastTradingDateSetting ltdsMidCurveQuarterly = new
  107.                 org.drip.product.params.LastTradingDateSetting
  108.                     (org.drip.product.params.LastTradingDateSetting.MID_CURVE_OPTION_QUARTERLY, "",
  109.                         java.lang.Integer.MIN_VALUE);

  110.             org.drip.product.params.LastTradingDateSetting ltdsMidCurve1M = new
  111.                 org.drip.product.params.LastTradingDateSetting
  112.                     (org.drip.product.params.LastTradingDateSetting.MID_CURVE_OPTION, "1M",
  113.                         java.lang.Integer.MIN_VALUE);

  114.             org.drip.product.params.LastTradingDateSetting ltdsMidCurve2M = new
  115.                 org.drip.product.params.LastTradingDateSetting
  116.                     (org.drip.product.params.LastTradingDateSetting.MID_CURVE_OPTION, "2M",
  117.                         java.lang.Integer.MIN_VALUE);

  118.             org.drip.product.params.LastTradingDateSetting ltdsMidCurve1Y = new
  119.                 org.drip.product.params.LastTradingDateSetting
  120.                     (org.drip.product.params.LastTradingDateSetting.MID_CURVE_OPTION, "1Y",
  121.                         java.lang.Integer.MIN_VALUE);

  122.             org.drip.product.params.LastTradingDateSetting ltdsMidCurve2Y = new
  123.                 org.drip.product.params.LastTradingDateSetting
  124.                     (org.drip.product.params.LastTradingDateSetting.MID_CURVE_OPTION, "2Y",
  125.                         java.lang.Integer.MIN_VALUE);

  126.             org.drip.product.params.LastTradingDateSetting[] s_aLTDSMidCurveAll = new
  127.                 org.drip.product.params.LastTradingDateSetting[] {ltdsMidCurveQuarterly, ltdsMidCurve1M,
  128.                     ltdsMidCurve2M, ltdsMidCurve1Y, ltdsMidCurve2Y, new
  129.                         org.drip.product.params.LastTradingDateSetting
  130.                             (org.drip.product.params.LastTradingDateSetting.MID_CURVE_OPTION, "4Y",
  131.                                 java.lang.Integer.MIN_VALUE)};

  132.             org.drip.market.exchange.FuturesOptions foCHFLIBOR3M_MARGIN = new
  133.                 org.drip.market.exchange.FuturesOptions ("CHF-LIBOR-3M", "MARGIN");

  134.             foCHFLIBOR3M_MARGIN.setLDTS ("LIFFE", new org.drip.product.params.LastTradingDateSetting[]
  135.                 {ltdsMidCurveQuarterly});

  136.             _mapFuturesOptions.put ("CHF-LIBOR-3M|MARGIN", foCHFLIBOR3M_MARGIN);

  137.             org.drip.market.exchange.FuturesOptions foGBPLIBOR3M_MARGIN = new
  138.                 org.drip.market.exchange.FuturesOptions ("GBP-LIBOR-3M", "MARGIN");

  139.             foGBPLIBOR3M_MARGIN.setLDTS ("LIFFE", new org.drip.product.params.LastTradingDateSetting[]
  140.                 {ltdsMidCurveQuarterly, ltdsMidCurve1M, ltdsMidCurve2M, ltdsMidCurve2Y});

  141.             _mapFuturesOptions.put ("GBP-LIBOR-3M|MARGIN", foGBPLIBOR3M_MARGIN);

  142.             org.drip.market.exchange.FuturesOptions foEUREURIBOR3M_MARGIN = new
  143.                 org.drip.market.exchange.FuturesOptions ("EUR-EURIBOR-3M", "MARGIN");

  144.             foEUREURIBOR3M_MARGIN.setLDTS ("EUREX", new org.drip.product.params.LastTradingDateSetting[]
  145.                 {ltdsMidCurveQuarterly, ltdsMidCurve1Y});

  146.             foEUREURIBOR3M_MARGIN.setLDTS ("LIFFE", new org.drip.product.params.LastTradingDateSetting[]
  147.                 {ltdsMidCurveQuarterly, ltdsMidCurve1M, ltdsMidCurve2M, ltdsMidCurve2Y});

  148.             _mapFuturesOptions.put ("EUR-EURIBOR-3M|MARGIN", foEUREURIBOR3M_MARGIN);

  149.             org.drip.market.exchange.FuturesOptions foJPYLIBOR3M_PREMIUM = new
  150.                 org.drip.market.exchange.FuturesOptions ("JPY-LIBOR-3M", "PREMIUM");

  151.             foJPYLIBOR3M_PREMIUM.setLDTS ("SGX", s_aLTDSMidCurveAll);

  152.             _mapFuturesOptions.put ("JPY-LIBOR-3M|PREMIUM", foJPYLIBOR3M_PREMIUM);

  153.             org.drip.market.exchange.FuturesOptions foJPYTIBOR3M_PREMIUM = new
  154.                 org.drip.market.exchange.FuturesOptions ("JPY-TIBOR-3M", "PREMIUM");

  155.             foJPYTIBOR3M_PREMIUM.setLDTS ("SGX", s_aLTDSMidCurveAll);

  156.             _mapFuturesOptions.put ("JPY-TIBOR-3M|PREMIUM", foJPYTIBOR3M_PREMIUM);

  157.             org.drip.market.exchange.FuturesOptions foUSDLIBOR1M_PREMIUM = new
  158.                 org.drip.market.exchange.FuturesOptions ("USD-LIBOR-1M", "PREMIUM");

  159.             foUSDLIBOR1M_PREMIUM.setLDTS ("CME", s_aLTDSMidCurveAll);

  160.             _mapFuturesOptions.put ("USD-LIBOR-1M|PREMIUM", foUSDLIBOR1M_PREMIUM);

  161.             org.drip.market.exchange.FuturesOptions foUSDLIBOR3M_MARGIN = new
  162.                 org.drip.market.exchange.FuturesOptions ("USD-LIBOR-3M", "MARGIN");

  163.             foUSDLIBOR3M_MARGIN.setLDTS ("LIFFE", new org.drip.product.params.LastTradingDateSetting[]
  164.                 {ltdsMidCurveQuarterly, ltdsMidCurve1M, ltdsMidCurve2M});

  165.             _mapFuturesOptions.put ("USD-LIBOR-3M|MARGIN", foUSDLIBOR3M_MARGIN);

  166.             org.drip.market.exchange.FuturesOptions foUSDLIBOR3M_PREMIUM = new
  167.                 org.drip.market.exchange.FuturesOptions ("USD-LIBOR-3M", "PREMIUM");

  168.             foUSDLIBOR3M_PREMIUM.setLDTS ("CME", s_aLTDSMidCurveAll);

  169.             foUSDLIBOR3M_PREMIUM.setLDTS ("SGX", s_aLTDSMidCurveAll);

  170.             _mapFuturesOptions.put ("USD-LIBOR-3M|PREMIUM", foUSDLIBOR3M_PREMIUM);
  171.         } catch (java.lang.Exception e) {
  172.             e.printStackTrace();

  173.             return false;
  174.         }

  175.         return true;
  176.     }

  177.     /**
  178.      * Retrieve the FuturesOptions Exchange Info
  179.      *
  180.      * @param strFullyQualifiedName Fully Qualified Name
  181.      * @param strTradingMode Trading Mode
  182.      *
  183.      * @return The FuturesOptions Exchange Info
  184.      */

  185.     public static final org.drip.market.exchange.FuturesOptions ExchangeInfo (
  186.         final java.lang.String strFullyQualifiedName,
  187.         final java.lang.String strTradingMode)
  188.     {
  189.         if (null == strFullyQualifiedName || strFullyQualifiedName.isEmpty() || null == strTradingMode ||
  190.             strTradingMode.isEmpty() || !_mapFuturesOptions.containsKey (strFullyQualifiedName + "|" +
  191.                 strTradingMode))
  192.             return null;

  193.         java.lang.String strFuturesOptionsKey = strFullyQualifiedName + "|" + strTradingMode;

  194.         return !_mapFuturesOptions.containsKey (strFuturesOptionsKey) ? null : _mapFuturesOptions.get
  195.             (strFuturesOptionsKey);
  196.     }
  197. }