PrepayAssetBackedProcessor.java

  1. package org.drip.service.json;

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

  77. /**
  78.  * <i>PrepayAssetBackedProcessor</i> Sets Up and Executes a JSON Based In/Out Product Pre-payable Asset
  79.  * Backed Loan Processor.
  80.  *
  81.  * <br><br>
  82.  *  <ul>
  83.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationalCore.md">Computational Core Module</a></li>
  84.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationSupportLibrary.md">Computation Support</a></li>
  85.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/service/README.md">Environment, Product/Definition Containers, and Scenario/State Manipulation APIs</a></li>
  86.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/service/json/README.md">JSON Based Valuation Request Service</a></li>
  87.  *  </ul>
  88.  * <br><br>
  89.  *
  90.  * @author Lakshmi Krishnamurthy
  91.  */

  92. public class PrepayAssetBackedProcessor {

  93.     /**
  94.      * JSON Based in/out Pre-Payable Asset Backed Loan Secular Metrics Thunker
  95.      *
  96.      * @param jsonParameter JSON Pre-Payable Asset Backed Loan Request Parameters
  97.      *
  98.      * @return JSON Pre-Payable Asset Backed Loan Secular Metrics Response
  99.      */

  100.     @SuppressWarnings ("unchecked") static final org.drip.json.simple.JSONObject SecularMetrics (
  101.         final org.drip.json.simple.JSONObject jsonParameter)
  102.     {
  103.         java.lang.String strBondName = org.drip.json.parser.Converter.StringEntry (jsonParameter, "Name");

  104.         java.lang.String strCurrency = org.drip.json.parser.Converter.StringEntry (jsonParameter,
  105.             "Currency");

  106.         java.lang.String strDayCount = org.drip.json.parser.Converter.StringEntry (jsonParameter,
  107.             "DayCount");

  108.         org.drip.analytics.date.JulianDate dtEffective = org.drip.json.parser.Converter.DateEntry
  109.             (jsonParameter, "EffectiveDate");

  110.         if (null == dtEffective) return null;

  111.         int iEffectiveDate = dtEffective.julian();

  112.         org.drip.analytics.date.JulianDate dtSettle = org.drip.json.parser.Converter.DateEntry
  113.             (jsonParameter, "SettleDate");

  114.         if (null == dtSettle) return null;

  115.         int iSettleDate = dtSettle.julian();

  116.         int iNumPayment = -1;
  117.         int iPayFrequency = -1;
  118.         double dblCleanPrice = 1.;
  119.         double dblCPR = java.lang.Double.NaN;
  120.         double dblCouponRate = java.lang.Double.NaN;
  121.         double dblBondNotional = java.lang.Double.NaN;
  122.         double dblServiceFeeRate = java.lang.Double.NaN;
  123.         double dblFixedMonthlyAmount = java.lang.Double.NaN;
  124.         double dblBeginPrincipalFactor = java.lang.Double.NaN;

  125.         try {
  126.             dblCPR = org.drip.json.parser.Converter.DoubleEntry (jsonParameter, "CPR");

  127.             iNumPayment = org.drip.json.parser.Converter.IntegerEntry (jsonParameter, "NumPayment");

  128.             dblCouponRate = org.drip.json.parser.Converter.DoubleEntry (jsonParameter, "CouponRate");

  129.             iPayFrequency = org.drip.json.parser.Converter.IntegerEntry (jsonParameter, "PayFrequency");

  130.             dblBondNotional = org.drip.json.parser.Converter.DoubleEntry (jsonParameter, "BondNotional");

  131.             dblServiceFeeRate = org.drip.json.parser.Converter.DoubleEntry (jsonParameter, "ServiceFeeRate");

  132.             dblFixedMonthlyAmount = org.drip.json.parser.Converter.DoubleEntry (jsonParameter,
  133.                 "FixedMonthlyAmount");

  134.             dblBeginPrincipalFactor = org.drip.json.parser.Converter.DoubleEntry (jsonParameter,
  135.                 "BeginPrincipalFactor");
  136.         } catch (java.lang.Exception e) {
  137.             e.printStackTrace();

  138.             return null;
  139.         }

  140.         org.drip.product.definition.Bond fpmb = org.drip.product.creator.ConstantPaymentBondBuilder.Prepay
  141.             (strBondName, dtEffective, strCurrency, iNumPayment, strDayCount, iPayFrequency, dblCouponRate,
  142.                 dblServiceFeeRate, dblCPR, dblFixedMonthlyAmount, dblBondNotional);

  143.         if (null == fpmb || fpmb.maturityDate().julian() <= iSettleDate) return null;

  144.         org.drip.json.simple.JSONObject jsonResponse = new org.drip.json.simple.JSONObject();

  145.         org.drip.json.simple.JSONArray jsonCouponFlowArray = new org.drip.json.simple.JSONArray();

  146.         for (org.drip.analytics.cashflow.CompositePeriod cp : fpmb.couponPeriods()) {
  147.             org.drip.json.simple.JSONObject jsonCouponFlow = new org.drip.json.simple.JSONObject();

  148.             org.drip.analytics.output.CompositePeriodCouponMetrics cpcm = cp.couponMetrics (iEffectiveDate,
  149.                 null);

  150.             if (null == cpcm) return null;

  151.             double dblPeriodCouponRate = cpcm.rate();

  152.             jsonCouponFlow.put ("FeeRate", dblServiceFeeRate);

  153.             jsonCouponFlow.put ("CouponRate", dblPeriodCouponRate);

  154.             jsonCouponFlow.put ("PrincipalFactor", dblBeginPrincipalFactor);

  155.             try {
  156.                 double dblEndPrincipalFactor = fpmb.notional (cp.endDate());

  157.                 double dblYieldDF = org.drip.analytics.support.Helper.Yield2DF (iPayFrequency, dblCouponRate,
  158.                     org.drip.analytics.daycount.Convention.YearFraction (dtEffective.julian(), cp.endDate(),
  159.                         "30/360", false, null, strCurrency));

  160.                 jsonCouponFlow.put ("StartDate", new org.drip.analytics.date.JulianDate
  161.                     (cp.startDate()).toString());

  162.                 jsonCouponFlow.put ("EndDate", new org.drip.analytics.date.JulianDate
  163.                     (cp.endDate()).toString());

  164.                 jsonCouponFlow.put ("PayDate", new org.drip.analytics.date.JulianDate
  165.                     (cp.payDate()).toString());

  166.                 double dblCouponDCF = cp.couponDCF();

  167.                 jsonCouponFlow.put ("AccrualDays", dblCouponDCF * 365.);

  168.                 jsonCouponFlow.put ("AccrualFraction", dblCouponDCF);

  169.                 double dblCouponAmount = dblBeginPrincipalFactor * dblPeriodCouponRate * dblCouponDCF *
  170.                     dblBondNotional;
  171.                 double dblFeeAmount = dblBeginPrincipalFactor * dblServiceFeeRate * dblCouponDCF *
  172.                     dblBondNotional;
  173.                 double dblPrincipalAmount = (dblBeginPrincipalFactor - dblEndPrincipalFactor) *
  174.                     dblBondNotional;
  175.                 double dblTotalAmount = dblPrincipalAmount + dblCouponAmount;
  176.                 dblBeginPrincipalFactor = dblEndPrincipalFactor;
  177.                 double dblBeginNotional = dblBeginPrincipalFactor * dblBondNotional;

  178.                 jsonCouponFlow.put ("BeginPrincipal", dblBeginNotional);

  179.                 jsonCouponFlow.put ("Notional", dblBeginNotional);

  180.                 jsonCouponFlow.put ("EndPrincipal", dblEndPrincipalFactor * dblBondNotional);

  181.                 jsonCouponFlow.put ("PrincipalAmount", dblPrincipalAmount);

  182.                 jsonCouponFlow.put ("CouponAmount", dblCouponAmount);

  183.                 jsonCouponFlow.put ("TotalAmount", dblTotalAmount);

  184.                 jsonCouponFlow.put ("DiscountFactor", dblYieldDF);

  185.                 jsonCouponFlow.put ("FeeAmount", dblFeeAmount);

  186.                 jsonCouponFlow.put ("SurvivalFactor", 1.);
  187.             } catch (java.lang.Exception e) {
  188.                 e.printStackTrace();

  189.                 return null;
  190.             }

  191.             jsonCouponFlowArray.add (jsonCouponFlow);
  192.         }

  193.         jsonResponse.put ("CouponFlow", jsonCouponFlowArray);

  194.         jsonResponse.put ("CleanPrice", 100. * dblCleanPrice);

  195.         jsonResponse.put ("Face", dblBondNotional);

  196.         org.drip.analytics.date.JulianDate dtPreviousCouponDate = fpmb.previousCouponDate (dtSettle);

  197.         if (null != dtPreviousCouponDate) {
  198.             jsonResponse.put ("AccrualDays", dtPreviousCouponDate.julian() - iSettleDate);

  199.             jsonResponse.put ("PreviousCouponDate", dtPreviousCouponDate.toString());
  200.         }

  201.         org.drip.param.valuation.ValuationParams valParams = org.drip.param.valuation.ValuationParams.Spot
  202.             (iSettleDate);

  203.         try {
  204.             double dblAccruedAmount = fpmb.accrued (iSettleDate, null) * dblBondNotional;

  205.             double dblCurrentPrincipal = fpmb.notional (dtPreviousCouponDate.julian()) * dblBondNotional;

  206.             double dblRisk = fpmb.yield01FromPrice (valParams, null, null, dblCleanPrice);

  207.             jsonResponse.put ("Accrued", dblAccruedAmount);

  208.             jsonResponse.put ("Convexity", fpmb.convexityFromPrice (valParams, null, null, dblCleanPrice));

  209.             jsonResponse.put ("CurrentPrincipal", dblCurrentPrincipal);

  210.             jsonResponse.put ("DV01", dblRisk * dblBondNotional);

  211.             jsonResponse.put ("ModifiedDuration", fpmb.modifiedDurationFromPrice (valParams, null, null,
  212.                 dblCleanPrice));

  213.             jsonResponse.put ("Notional", dblBondNotional);

  214.             jsonResponse.put ("NPV", dblCurrentPrincipal + dblAccruedAmount);

  215.             jsonResponse.put ("Risk", dblRisk);

  216.             jsonResponse.put ("SettleDate", dtSettle.toString());

  217.             jsonResponse.put ("Total", dblCurrentPrincipal + dblAccruedAmount);

  218.             jsonResponse.put ("Yield", fpmb.yieldFromPrice (valParams, null, null, dblCleanPrice));

  219.             jsonResponse.put ("Yield01", dblRisk);

  220.             jsonResponse.put ("Y01", dblRisk);
  221.         } catch (java.lang.Exception e) {
  222.             e.printStackTrace();

  223.             return null;
  224.         }

  225.         org.drip.state.discount.MergedDiscountForwardCurve dcFunding =
  226.             org.drip.service.json.LatentStateProcessor.FundingCurve (jsonParameter);

  227.         if (null == dcFunding) return jsonResponse;

  228.         org.drip.param.market.CurveSurfaceQuoteContainer csqc = new
  229.             org.drip.param.market.CurveSurfaceQuoteContainer();

  230.         if (!csqc.setFundingState (dcFunding)) return jsonResponse;

  231.         try {
  232.             jsonResponse.put ("DiscountedPrice", fpmb.priceFromDiscountMargin (valParams, csqc, null, 0.));
  233.         } catch (java.lang.Exception e) {
  234.         }

  235.         if (!csqc.setCreditState (org.drip.service.json.LatentStateProcessor.CreditCurve (jsonParameter,
  236.             dcFunding)))
  237.             return jsonResponse;

  238.         try {
  239.             jsonResponse.put ("DiscountedCreditPrice", fpmb.priceFromCreditBasis (valParams, csqc, null,
  240.                 0.));
  241.         } catch (java.lang.Exception e) {
  242.         }

  243.         return jsonResponse;
  244.     }

  245. }