ComposableUnitPeriod.java

  1. package org.drip.analytics.cashflow;

  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>ComposableUnitPeriod</i> represents the Cash Flow Periods' Composable Unit Period Details. Currently it
  81.  * holds the Accrual Start Date, the Accrual End Date, the Fixed Coupon, the Basis Spread, the Coupon and the
  82.  * Accrual Day Counts, as well as the EOM Adjustment Flags.
  83.  *
  84.  *  <br><br>
  85.  *  <ul>
  86.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  87.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  88.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/analytics/README.md">Date, Cash Flow, and Cash Flow Period Measure Generation Utilities</a></li>
  89.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/analytics/cashflow/README.md">Unit and Composite Cash Flow Periods</a></li>
  90.  *  </ul>
  91.  *
  92.  * @author Lakshmi Krishnamurthy
  93.  */

  94. public abstract class ComposableUnitPeriod {

  95.     /**
  96.      * Node is to the Left of the Period
  97.      */

  98.     public static final int NODE_LEFT_OF_SEGMENT = 1;

  99.     /**
  100.      * Node is Inside the Period
  101.      */

  102.     public static final int NODE_INSIDE_SEGMENT = 2;

  103.     /**
  104.      * Node is to the Right of the Period
  105.      */

  106.     public static final int NODE_RIGHT_OF_SEGMENT = 4;

  107.     private int _iFreq = -1;
  108.     private java.lang.String _strTenor = "";
  109.     private int _iEndDate = java.lang.Integer.MIN_VALUE;
  110.     private int _iStartDate = java.lang.Integer.MIN_VALUE;
  111.     private double _dblFullCouponDCF = java.lang.Double.NaN;
  112.     private org.drip.param.period.UnitCouponAccrualSetting _ucas = null;

  113.     protected ComposableUnitPeriod (
  114.         final int iStartDate,
  115.         final int iEndDate,
  116.         final java.lang.String strTenor,
  117.         final org.drip.param.period.UnitCouponAccrualSetting ucas)
  118.         throws java.lang.Exception
  119.     {
  120.         if (
  121.             (_iStartDate = iStartDate) >= (_iEndDate = iEndDate) ||
  122.             null == (_strTenor = strTenor) || strTenor.isEmpty() ||
  123.             null == (_ucas = ucas)
  124.         )
  125.             throw new java.lang.Exception ("ComposableUnitPeriod ctr: Invalid Inputs");

  126.         _iFreq = org.drip.analytics.support.Helper.TenorToFreq (_strTenor);

  127.         _dblFullCouponDCF = _ucas.couponDCFOffOfFreq() ? 1. / _iFreq :
  128.             org.drip.analytics.daycount.Convention.YearFraction (
  129.                 _iStartDate,
  130.                 _iEndDate,
  131.                 _ucas.couponDC(),
  132.                 _ucas.couponEOMAdjustment(),
  133.                 org.drip.analytics.daycount.ActActDCParams.FromFrequency (_iFreq),
  134.                 _ucas.calendar()
  135.             );
  136.     }

  137.     /**
  138.      * Retrieve the Accrual Start Date
  139.      *
  140.      * @return The Accrual Start Date
  141.      */

  142.     public int startDate()
  143.     {
  144.         return _iStartDate;
  145.     }

  146.     /**
  147.      * Retrieve the Accrual End Date
  148.      *
  149.      * @return The Accrual End Date
  150.      */

  151.     public int endDate()
  152.     {
  153.         return _iEndDate;
  154.     }

  155.     /**
  156.      * Retrieve the Coupon Frequency
  157.      *
  158.      * @return The Coupon Frequency
  159.      */

  160.     public int freq()
  161.     {
  162.         return _iFreq;
  163.     }

  164.     /**
  165.      * Retrieve the Coupon Day Count
  166.      *
  167.      * @return The Coupon Day Count
  168.      */

  169.     public java.lang.String couponDC()
  170.     {
  171.         return _ucas.couponDC();
  172.     }

  173.     /**
  174.      * Retrieve the Coupon EOM Adjustment Flag
  175.      *
  176.      * @return The Coupon EOM Adjustment Flag
  177.      */

  178.     public boolean couponEOMAdjustment()
  179.     {
  180.         return _ucas.couponEOMAdjustment();
  181.     }

  182.     /**
  183.      * Retrieve the Accrual Day Count
  184.      *
  185.      * @return The Accrual Day Count
  186.      */

  187.     public java.lang.String accrualDC()
  188.     {
  189.         return _ucas.accrualDC();
  190.     }

  191.     /**
  192.      * Retrieve the Accrual EOM Adjustment Flag
  193.      *
  194.      * @return The Accrual EOM Adjustment Flag
  195.      */

  196.     public boolean accrualEOMAdjustment()
  197.     {
  198.         return _ucas.accrualEOMAdjustment();
  199.     }

  200.     /**
  201.      * Retrieve the Flag indicating whether Coupon DCF is computed off of the DCF Flag
  202.      *
  203.      * @return true - The Flag indicating whether Coupon DCF is computed off of the DCF Flag
  204.      */

  205.     public boolean couponDCFOffOfFreq()
  206.     {
  207.         return _ucas.couponDCFOffOfFreq();
  208.     }

  209.     /**
  210.      * Retrieve the Calendar
  211.      *
  212.      * @return The Calendar
  213.      */

  214.     public java.lang.String calendar()
  215.     {
  216.         return _ucas.calendar();
  217.     }

  218.     /**
  219.      * Retrieve the Accrual Compounding Rule
  220.      *
  221.      * @return The Accrual Compounding Rule
  222.      */

  223.     public int accrualCompoundingRule()
  224.     {
  225.         return _ucas.accrualCompoundingRule();
  226.     }

  227.     /**
  228.      * Retrieve the Period Full Coupon DCF
  229.      *
  230.      * @return The Period Full Coupon DCF
  231.      */

  232.     public double fullCouponDCF()
  233.     {
  234.         return _dblFullCouponDCF;
  235.     }

  236.     /**
  237.      * Convert the Coupon Frequency into a Tenor
  238.      *
  239.      * @return The Coupon Frequency converted into a Tenor
  240.      */

  241.     public java.lang.String tenor()
  242.     {
  243.         return _strTenor;
  244.     }

  245.     /**
  246.      * Place the Date Node Location in Relation to the Segment Location
  247.      *
  248.      * @param iDateNode The Node Ordinate
  249.      *
  250.      * @return One of NODE_LEFT_OF_SEGMENT, NODE_RIGHT_OF_SEGMENT, or NODE_INSIDE_SEGMENT
  251.      */

  252.     public int dateLocation (
  253.         final int iDateNode)
  254.     {
  255.         if (iDateNode < _iStartDate) return NODE_LEFT_OF_SEGMENT;

  256.         if (iDateNode > _iEndDate) return NODE_RIGHT_OF_SEGMENT;

  257.         return NODE_INSIDE_SEGMENT;
  258.     }

  259.     /**
  260.      * Get the Period Accrual Day Count Fraction to an Accrual End Date
  261.      *
  262.      * @param iAccrualEnd Accrual End Date
  263.      *
  264.      * @return The Accrual DCF
  265.      *
  266.      * @throws java.lang.Exception Thrown if Inputs are Invalid, or if the Date does not lie within the
  267.      *  Period
  268.      */

  269.     public double accrualDCF (
  270.         final int iAccrualEnd)
  271.         throws java.lang.Exception
  272.     {
  273.         if (NODE_INSIDE_SEGMENT != dateLocation (iAccrualEnd))
  274.             throw new java.lang.Exception
  275.                 ("ComposableUnitPeriod::accrualDCF => Invalid in-period accrual date!");

  276.         org.drip.analytics.daycount.ActActDCParams aap = new org.drip.analytics.daycount.ActActDCParams (
  277.             _iFreq,
  278.             _iEndDate - _iStartDate
  279.         );

  280.         java.lang.String strAccrualDC = accrualDC();

  281.         java.lang.String strCalendar = calendar();

  282.         boolean bAccrualEOMAdjustment = accrualEOMAdjustment();

  283.         return org.drip.analytics.daycount.Convention.YearFraction (
  284.             _iStartDate,
  285.             iAccrualEnd,
  286.             strAccrualDC,
  287.             bAccrualEOMAdjustment,
  288.             aap,
  289.             strCalendar
  290.         ) / org.drip.analytics.daycount.Convention.YearFraction (
  291.             _iStartDate,
  292.             _iEndDate,
  293.             strAccrualDC,
  294.             bAccrualEOMAdjustment,
  295.             aap,
  296.             strCalendar
  297.         ) * _dblFullCouponDCF;
  298.     }

  299.     /**
  300.      * Get the Period Full Coupon Rate
  301.      *
  302.      * @param csqc The Market Curve and Surface
  303.      *
  304.      * @return The Period Full Coupon Rate
  305.      *
  306.      * @throws java.lang.Exception Thrown if the Full Coupon Rate cannot be calculated
  307.      */

  308.     public double fullCouponRate (
  309.         final org.drip.param.market.CurveSurfaceQuoteContainer csqc)
  310.         throws java.lang.Exception
  311.     {
  312.         return baseRate (csqc) + basis();
  313.     }

  314.     /**
  315.      * Get the Period Base Coupon Rate
  316.      *
  317.      * @param csqc The Market Curve and Surface
  318.      *
  319.      * @return The Period Base Coupon Rate
  320.      *
  321.      * @throws java.lang.Exception Thrown if the base Coupon Rate cannot be calculated
  322.      */

  323.     public abstract double baseRate (
  324.         final org.drip.param.market.CurveSurfaceQuoteContainer csqc)
  325.         throws java.lang.Exception;

  326.     /**
  327.      * Get the Period Coupon Basis
  328.      *
  329.      * @return The Period Coupon Basis
  330.      */

  331.     public abstract double basis();

  332.     /**
  333.      * Get the Period Coupon Currency
  334.      *
  335.      * @return The Period Coupon Currency
  336.      */

  337.     public abstract java.lang.String couponCurrency();
  338. }