OvernightLabel.java

  1. package org.drip.state.identifier;

  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>OvernightLabel</i> contains the Index Parameters referencing an Overnight Index. It provides the
  80.  * functionality to Retrieve Index, Tenor, Currency, and Fully Qualified Name.
  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</a></li>
  86.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/state/README.md">Latent State Inference and Creation Utilities</a></li>
  87.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/state/identifier/README.md">Latent State Identifier Labels</a></li>
  88.  *  </ul>
  89.  * <br><br>
  90.  *  
  91.  * @author Lakshmi Krishnamurthy
  92.  */

  93. public class OvernightLabel extends org.drip.state.identifier.ForwardLabel {
  94.     private org.drip.market.definition.OvernightIndex _overnightIndex = null;

  95.     /**
  96.      * Construct an OvernightLabel from the Jurisdiction
  97.      *
  98.      * @param strCurrency The Currency
  99.      *
  100.      * @return The OvernightLabel Instance
  101.      */

  102.     public static final OvernightLabel Create (
  103.         final java.lang.String strCurrency)
  104.     {
  105.         try {
  106.             return new OvernightLabel
  107.                 (org.drip.market.definition.OvernightIndexContainer.IndexFromJurisdiction (strCurrency));
  108.         } catch (java.lang.Exception e) {
  109.             e.printStackTrace();
  110.         }

  111.         return null;
  112.     }

  113.     /**
  114.      * Construct an OvernightLabel from the Index
  115.      *
  116.      * @param overnightIndex The Overnight Index Details
  117.      *
  118.      * @return The OvernightLabel Instance
  119.      */

  120.     public static final OvernightLabel Create (
  121.         final org.drip.market.definition.OvernightIndex overnightIndex)
  122.     {
  123.         try {
  124.             return new OvernightLabel (overnightIndex);
  125.         } catch (java.lang.Exception e) {
  126.             e.printStackTrace();
  127.         }

  128.         return null;
  129.     }

  130.     /**
  131.      * OvernightLabel Constructor
  132.      *
  133.      * @param overnightIndex The Overnight Index Details
  134.      *
  135.      * @throws java.lang.Exception Thrown if the Inputs are invalid
  136.      */

  137.     private OvernightLabel (
  138.         final org.drip.market.definition.OvernightIndex overnightIndex)
  139.         throws java.lang.Exception
  140.     {
  141.         super (overnightIndex, "ON");

  142.         if (null == (_overnightIndex = overnightIndex))
  143.             throw new java.lang.Exception ("OvernightLabel ctr: Invalid Inputs");
  144.     }

  145.     /**
  146.      * Retrieve the Currency
  147.      *
  148.      * @return The Currency
  149.      */

  150.     public java.lang.String currency()
  151.     {
  152.         return _overnightIndex.currency();
  153.     }

  154.     /**
  155.      * Retrieve the Family
  156.      *
  157.      * @return The Family
  158.      */

  159.     public java.lang.String family()
  160.     {
  161.         return _overnightIndex.family();
  162.     }

  163.     /**
  164.      * Retrieve the Tenor
  165.      *
  166.      * @return The Tenor
  167.      */

  168.     public java.lang.String tenor()
  169.     {
  170.         return "ON";
  171.     }

  172.     /**
  173.      * Indicate if the Index is an Overnight Index
  174.      *
  175.      * @return TRUE - Overnight Index
  176.      */

  177.     public boolean overnight()
  178.     {
  179.         return true;
  180.     }

  181.     /**
  182.      * Retrieve the Overnight Index
  183.      *
  184.      * @return The Overnight Index
  185.      */

  186.     public org.drip.market.definition.OvernightIndex overnightIndex()
  187.     {
  188.         return _overnightIndex;
  189.     }

  190.     /**
  191.      * Retrieve a Unit Coupon Accrual Setting
  192.      *
  193.      * @return Unit Coupon Accrual Setting
  194.      */

  195.     public org.drip.param.period.UnitCouponAccrualSetting ucas()
  196.     {
  197.         java.lang.String strDayCount = _overnightIndex.dayCount();

  198.         try {
  199.             return new org.drip.param.period.UnitCouponAccrualSetting (360, strDayCount, false, strDayCount,
  200.                 false, _overnightIndex.currency(), false, _overnightIndex.accrualCompoundingRule());
  201.         } catch (java.lang.Exception e) {
  202.             e.printStackTrace();
  203.         }

  204.         return null;
  205.     }

  206.     @Override public java.lang.String fullyQualifiedName()
  207.     {
  208.         return _overnightIndex.currency() + "-" + _overnightIndex.family() + "-ON";
  209.     }

  210.     @Override public boolean match (
  211.         final org.drip.state.identifier.LatentStateLabel lslOther)
  212.     {
  213.         return null == lslOther || !(lslOther instanceof org.drip.state.identifier.OvernightLabel) ? false :
  214.             fullyQualifiedName().equalsIgnoreCase (lslOther.fullyQualifiedName());
  215.     }
  216. }