CouponSetting.java

  1. package org.drip.product.params;

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

  82. /**
  83.  * <i>CouponSetting</i> contains the coupon type, schedule, and the coupon amount for the component. If
  84.  * available floor and/or ceiling may also be applied to the coupon, in a pre-determined order of precedence.
  85.  * It exports serialization into and de-serialization out of byte arrays.
  86.  *
  87.  * <br><br>
  88.  *  <ul>
  89.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  90.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  91.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/product/README.md">Product Components/Baskets for Credit, FRA, FX, Govvie, Rates, and Option AssetClasses</a></li>
  92.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/product/params/README.md">Fixed Income Product Customization Parameters</a></li>
  93.  *  </ul>
  94.  * <br><br>
  95.  *
  96.  * @author Lakshmi Krishnamurthy
  97.  */

  98. public class CouponSetting implements org.drip.product.params.Validatable {
  99.     private double _dblCouponRateExtension = 0.;
  100.     private java.lang.String _strCouponType = "";
  101.     private org.drip.numerical.common.Array2D _fs = null;
  102.     private double _dblCouponRate = java.lang.Double.NaN;
  103.     private double _dblCouponFloorRate = java.lang.Double.NaN;
  104.     private double _dblCouponCeilingRate = java.lang.Double.NaN;

  105.     /**
  106.      * Construct the CouponSetting from the coupon schedule, coupon type, and the coupon amount
  107.      *
  108.      * @param fs Coupon schedule
  109.      * @param strCouponType Coupon Type
  110.      * @param dblCouponRate Coupon Rate
  111.      * @param dblCouponCeilingRate Coupon Ceiling Rate
  112.      * @param dblCouponFloorRate Coupon Floor Rate
  113.      */

  114.     public CouponSetting (
  115.         final org.drip.numerical.common.Array2D fs,
  116.         final java.lang.String strCouponType,
  117.         final double dblCouponRate,
  118.         final double dblCouponCeilingRate,
  119.         final double dblCouponFloorRate)
  120.     {
  121.         _fs = fs;
  122.         _dblCouponRate = dblCouponRate;
  123.         _strCouponType = strCouponType;
  124.         _dblCouponFloorRate = dblCouponFloorRate;
  125.         _dblCouponCeilingRate = dblCouponCeilingRate;
  126.     }

  127.     /**
  128.      * Construct the CouponSetting from the coupon schedule, coupon type, the coupon rate, and its extension
  129.      *
  130.      * @param fs Coupon schedule
  131.      * @param strCouponType Coupon Type
  132.      * @param dblCouponRate Coupon Rate
  133.      * @param dblCouponRateExtension Coupon Rate Extension
  134.      * @param dblCouponCeilingRate Coupon Ceiling Rate
  135.      * @param dblCouponFloorRate Coupon Floor Rate
  136.      */

  137.     public CouponSetting (
  138.         final org.drip.numerical.common.Array2D fs,
  139.         final java.lang.String strCouponType,
  140.         final double dblCouponRate,
  141.         final double dblCouponRateExtension,
  142.         final double dblCouponCeilingRate,
  143.         final double dblCouponFloorRate)
  144.     {
  145.         _fs = fs;
  146.         _dblCouponRate = dblCouponRate;
  147.         _strCouponType = strCouponType;
  148.         _dblCouponFloorRate = dblCouponFloorRate;
  149.         _dblCouponCeilingRate = dblCouponCeilingRate;
  150.         _dblCouponRateExtension = dblCouponRateExtension;
  151.     }

  152.     /**
  153.      * Trim the component coupon if it falls outside the (optionally) specified coupon window. Note that
  154.      *  trimming the coupon ceiling takes precedence over hiking the coupon floor.
  155.      *
  156.      * @param dblCouponRate Input Coupon Rate
  157.      * @param dblDate Input Date representing the period that the coupon belongs to
  158.      *
  159.      * @return The "trimmed" coupon Rate
  160.      *
  161.      * @throws java.lang.Exception Thrown if inputs are invalid
  162.      */

  163.     public double processCouponWindow (
  164.         final double dblCouponRate,
  165.         final double dblDate)
  166.         throws java.lang.Exception
  167.     {
  168.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblCouponRate) ||
  169.             !org.drip.numerical.common.NumberUtil.IsValid (dblDate))
  170.             throw new java.lang.Exception ("CouponSetting::processCouponWindow => Invalid Inputs");

  171.         if (!org.drip.numerical.common.NumberUtil.IsValid (_dblCouponCeilingRate) &&
  172.             !org.drip.numerical.common.NumberUtil.IsValid (_dblCouponFloorRate))
  173.             return dblCouponRate;

  174.         if (!!org.drip.numerical.common.NumberUtil.IsValid (_dblCouponCeilingRate) && dblCouponRate >
  175.             _dblCouponCeilingRate)
  176.             return _dblCouponCeilingRate;

  177.         if (!!org.drip.numerical.common.NumberUtil.IsValid (_dblCouponFloorRate) && dblCouponRate <
  178.             _dblCouponFloorRate)
  179.             return _dblCouponFloorRate;

  180.         return dblCouponRate;
  181.     }

  182.     @Override public boolean validate()
  183.     {
  184.         if (!org.drip.numerical.common.NumberUtil.IsValid (_dblCouponRate) ||
  185.             !org.drip.numerical.common.NumberUtil.IsValid (_dblCouponRateExtension))
  186.             return false;

  187.         if (null == _fs) _fs = org.drip.numerical.common.Array2D.BulletSchedule();

  188.         if (org.drip.numerical.common.NumberUtil.IsValid (_dblCouponCeilingRate) &&
  189.             org.drip.numerical.common.NumberUtil.IsValid (_dblCouponFloorRate) && _dblCouponCeilingRate <
  190.                 _dblCouponFloorRate)
  191.             return false;

  192.         return true;
  193.     }

  194.     /**
  195.      * Retrieve the Factor Schedule
  196.      *
  197.      * @return The Factor Schedule
  198.      */

  199.     public org.drip.numerical.common.Array2D factorSchedule()
  200.     {
  201.         return _fs;
  202.     }

  203.     /**
  204.      * Retrieve the Coupon Type
  205.      *
  206.      * @return The Coupon Type
  207.      */

  208.     public java.lang.String couponType()
  209.     {
  210.         return _strCouponType;
  211.     }

  212.     /**
  213.      * Retrieve the Coupon Rate
  214.      *
  215.      * @return The Coupon Rate
  216.      */

  217.     public double couponRate()
  218.     {
  219.         return _dblCouponRate;
  220.     }

  221.     /**
  222.      * Retrieve the Coupon Rate Extension
  223.      *
  224.      * @return The Coupon Rate Extension
  225.      */

  226.     public double couponRateExtension()
  227.     {
  228.         return _dblCouponRateExtension;
  229.     }

  230.     /**
  231.      * Retrieve the Coupon Ceiling Rate
  232.      *
  233.      * @return The Coupon Ceiling Rate
  234.      */

  235.     public double couponCeilingRate()
  236.     {
  237.         return _dblCouponCeilingRate;
  238.     }

  239.     /**
  240.      * Retrieve the Coupon Floor Rate
  241.      *
  242.      * @return The Coupon Floor Rate
  243.      */

  244.     public double couponFloorRate()
  245.     {
  246.         return _dblCouponFloorRate;
  247.     }
  248. }