FixedAssetBackedProcessor.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>FixedAssetBackedProcessor</i> Sets Up and Executes a JSON Based In/Out Product Constant Payment 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 FixedAssetBackedProcessor {

  93.     /**
  94.      * JSON Based in/out Constant Payment Asset Backed Loan Secular Metrics Thunker
  95.      *
  96.      * @param jsonParameter JSON Constant Payment Asset Backed Loan Request Parameters
  97.      *
  98.      * @return JSON Constant Payment 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 dblCouponRate = java.lang.Double.NaN;
  120.         double dblBondNotional = java.lang.Double.NaN;
  121.         double dblServiceFeeRate = java.lang.Double.NaN;
  122.         double dblFixedMonthlyAmount = java.lang.Double.NaN;
  123.         double dblBeginPrincipalFactor = java.lang.Double.NaN;

  124.         try {
  125.             iNumPayment = org.drip.json.parser.Converter.IntegerEntry (jsonParameter, "NumPayment");

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

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

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

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

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

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

  136.             return null;
  137.         }

  138.         org.drip.product.definition.Bond fpmb = org.drip.product.creator.ConstantPaymentBondBuilder.Standard
  139.             (strBondName, dtEffective, strCurrency, iNumPayment, strDayCount, iPayFrequency, dblCouponRate,
  140.                 dblServiceFeeRate, dblFixedMonthlyAmount, dblBondNotional);

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

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

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

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

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

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

  149.             double dblPeriodCouponRate = cpcm.rate();

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

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

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

  153.             try {
  154.                 double dblEndPrincipalFactor = fpmb.notional (cp.endDate());

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

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

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

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

  164.                 double dblCouponDCF = cp.couponDCF();

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

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

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

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

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

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

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

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

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

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

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

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

  187.                 return null;
  188.             }

  189.             jsonCouponFlowArray.add (jsonCouponFlow);
  190.         }

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

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

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

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

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

  197.             jsonResponse.put ("PreviousCouponDate", dtPreviousCouponDate.toString());
  198.         }

  199.         org.drip.param.valuation.ValuationParams valParams = org.drip.param.valuation.ValuationParams.Spot
  200.             (iSettleDate);

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

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

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

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

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

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

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

  209.             jsonResponse.put ("ModifiedDuration", fpmb.modifiedDurationFromPrice (valParams, null, null,
  210.                 dblCleanPrice));

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

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

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

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

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

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

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

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

  221.             return null;
  222.         }

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

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

  226.         org.drip.param.market.CurveSurfaceQuoteContainer csqc = new
  227.             org.drip.param.market.CurveSurfaceQuoteContainer();

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

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

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

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

  241.         return jsonResponse;
  242.     }
  243. }