RepoCurve.java

  1. package org.drip.state.repo;

  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>RepoCurve</i> is the Stub for the Re-purchase Rate between applicable to the Specified Entity.
  80.  *
  81.  *  <br><br>
  82.  *  <ul>
  83.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  84.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  85.  *      <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>
  86.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/state/repo/README.md">Latent State Repo Curve Estimator</a></li>
  87.  *  </ul>
  88.  * <br><br>
  89.  *
  90.  * @author Lakshmi Krishnamurthy
  91.  */

  92. public abstract class RepoCurve implements org.drip.state.repo.RepoEstimator,
  93.     org.drip.analytics.definition.Curve {

  94.     /**
  95.      * Repo Latent State
  96.      */

  97.     public static final java.lang.String LATENT_STATE_REPO = "LATENT_STATE_REPO";

  98.     /**
  99.      * Basis Latent State Quantification Metric - Discount Factor
  100.      */

  101.     public static final java.lang.String QUANTIFICATION_METRIC_REPO_RATE =
  102.         "QUANTIFICATION_METRIC_REPO_RATE";

  103.     private int _iEpochDate = java.lang.Integer.MIN_VALUE;
  104.     private org.drip.product.definition.Component _comp = null;

  105.     protected RepoCurve (
  106.         final int iEpochDate,
  107.         final org.drip.product.definition.Component comp)
  108.         throws java.lang.Exception
  109.     {
  110.         if (null == (_comp = comp)) throw new java.lang.Exception ("RepoCurve ctr: Invalid Inputs");

  111.         _iEpochDate = iEpochDate;
  112.     }

  113.     @Override public org.drip.analytics.date.JulianDate epoch()
  114.     {
  115.         return new org.drip.analytics.date.JulianDate (_iEpochDate);
  116.     }

  117.     @Override public org.drip.product.definition.Component component()
  118.     {
  119.         return _comp;
  120.     }

  121.     @Override public org.drip.state.identifier.LatentStateLabel label()
  122.     {
  123.         return org.drip.state.identifier.RepoLabel.Standard (_comp.name());
  124.     }

  125.     @Override public java.lang.String currency()
  126.     {
  127.         return _comp.payCurrency();
  128.     }

  129.     @Override public double repo (
  130.         final org.drip.analytics.date.JulianDate dt)
  131.         throws java.lang.Exception
  132.     {
  133.         if (null == dt) throw new java.lang.Exception ("RepoCurve::repo got null for date");

  134.         return repo (dt.julian());
  135.     }

  136.     @Override public double repo (
  137.         final java.lang.String strTenor)
  138.         throws java.lang.Exception
  139.     {
  140.         if (null == strTenor || strTenor.isEmpty())
  141.             throw new java.lang.Exception ("RepoCurve::repo got bad tenor");

  142.         return repo (epoch().addTenor (strTenor));
  143.     }

  144.     @Override public boolean setCCIS (
  145.         final org.drip.analytics.input.CurveConstructionInputSet ccis)
  146.     {
  147.         return true;
  148.     }

  149.     @Override public org.drip.product.definition.CalibratableComponent[] calibComp()
  150.     {
  151.         return null;
  152.     }

  153.     @Override public org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> manifestMeasure (
  154.         final java.lang.String strInstr)
  155.     {
  156.         return null;
  157.     }

  158.     @Override public org.drip.state.representation.LatentState parallelShiftManifestMeasure (
  159.         final java.lang.String strManifestMeasure,
  160.         final double dblShift)
  161.     {
  162.         return null;
  163.     }

  164.     @Override public org.drip.state.representation.LatentState shiftManifestMeasure (
  165.         final int iSpanIndex,
  166.         final java.lang.String strManifestMeasure,
  167.         final double dblShift)
  168.     {
  169.         return null;
  170.     }

  171.     @Override public org.drip.state.representation.LatentState customTweakManifestMeasure (
  172.         final java.lang.String strManifestMeasure,
  173.         final org.drip.param.definition.ManifestMeasureTweak rvtp)
  174.     {
  175.         return null;
  176.     }

  177.     @Override public org.drip.state.representation.LatentState parallelShiftQuantificationMetric (
  178.         final double dblShift)
  179.     {
  180.         return null;
  181.     }

  182.     @Override public org.drip.state.representation.LatentState customTweakQuantificationMetric (
  183.         final org.drip.param.definition.ManifestMeasureTweak rvtp)
  184.     {
  185.         return null;
  186.     }
  187. }