FRAMarketComponent.java

  1. package org.drip.product.fra;

  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>FRAMarketComponent</i> contains the implementation of the Standard Multi-Curve FRA product whose payoff
  81.  * is dictated off of Market FRA Conventions.
  82.  *
  83.  *  <br><br>
  84.  *  <ul>
  85.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  86.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  87.  *      <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>
  88.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/product/fra/README.md">Standard/Market FRAs - Caps/Floors</a></li>
  89.  *  </ul>
  90.  * <br><br>
  91.  *
  92.  * @author Lakshmi Krishnamurthy
  93.  */

  94. public class FRAMarketComponent extends org.drip.product.fra.FRAStandardComponent {

  95.     /**
  96.      * FRAMarketComponent constructor
  97.      *
  98.      * @param strName Futures Component Name
  99.      * @param stream Futures Stream
  100.      * @param dblStrike Futures Strike
  101.      * @param csp Cash Settle Parameters Instance
  102.      *
  103.      * @throws java.lang.Exception Thrown if Inputs are Invalid
  104.      */

  105.     public FRAMarketComponent (
  106.         final java.lang.String strName,
  107.         final org.drip.product.rates.Stream stream,
  108.         final double dblStrike,
  109.         final org.drip.param.valuation.CashSettleParams csp)
  110.         throws java.lang.Exception
  111.     {
  112.         super (strName, stream, dblStrike, csp);
  113.     }

  114.     @Override public org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> value (
  115.         final org.drip.param.valuation.ValuationParams valParams,
  116.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  117.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  118.         final org.drip.param.valuation.ValuationCustomizationParams vcp)
  119.     {
  120.         if (null == valParams || null == csqs) return null;

  121.         long lStart = System.nanoTime();

  122.         int iValueDate = valParams.valueDate();

  123.         int iEffectiveDate = effectiveDate().julian();

  124.         if (iValueDate > iEffectiveDate) return null;

  125.         org.drip.state.identifier.FundingLabel fundingLabel = org.drip.state.identifier.FundingLabel.Standard
  126.             (payCurrency());

  127.         org.drip.state.discount.MergedDiscountForwardCurve dcFunding = csqs.fundingState (fundingLabel);

  128.         if (null == dcFunding) return null;

  129.         org.drip.analytics.date.JulianDate dtMaturity = maturityDate();

  130.         int iMaturityDate = dtMaturity.julian();

  131.         org.drip.state.identifier.ForwardLabel forwardLabel = forwardLabel().get ("DERIVED");

  132.         org.drip.state.forward.ForwardRateEstimator fc = csqs.forwardState (forwardLabel);

  133.         if (null == fc || !forwardLabel.match (fc.index())) return null;

  134.         org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> mapResult = super.value
  135.             (valParams, pricerParams, csqs, vcp);

  136.         if (null == mapResult || 0 == mapResult.size()) return null;

  137.         try {
  138.             double dblParStandardFRA = csqs.available (dtMaturity, forwardLabel) ? csqs.fixing (dtMaturity,
  139.                 forwardLabel) : fc.forward (iMaturityDate);

  140.             double dblForwardDCF = org.drip.analytics.daycount.Convention.YearFraction (iMaturityDate, new
  141.                 org.drip.analytics.date.JulianDate (iMaturityDate).addTenor (forwardLabel.tenor()).julian(),
  142.                     stream().couponDC(), false, null, stream().calendar());

  143.             double dblParDCForward = dcFunding.libor (iEffectiveDate, iMaturityDate);

  144.             double dblShiftedLogNormalScaler = dblForwardDCF * dblParStandardFRA;
  145.             dblShiftedLogNormalScaler = dblShiftedLogNormalScaler / (1. + dblShiftedLogNormalScaler);

  146.             double dblForwardPrice = dblForwardDCF * (dblParStandardFRA - strike()) / (1. + dblForwardDCF *
  147.                 dblParStandardFRA);

  148.             double dblShiftedLogNormalConvexityAdjustmentExponent =
  149.                 org.drip.analytics.support.OptionHelper.IntegratedFRACrossVolConvexityExponent
  150.                     (csqs.forwardVolatility (forwardLabel), csqs.fundingVolatility (fundingLabel),
  151.                         csqs.forwardFundingCorrelation (forwardLabel, fundingLabel),
  152.                             dblShiftedLogNormalScaler, dblShiftedLogNormalScaler, iValueDate,
  153.                                 iEffectiveDate);

  154.             double dblShiftedLogNormalParMarketFRA = ((dblForwardDCF * dblParStandardFRA + 1.) *
  155.                 java.lang.Math.exp (dblShiftedLogNormalConvexityAdjustmentExponent) - 1.) / dblForwardDCF;

  156.             mapResult.put ("discountcurveparforward", dblParDCForward);

  157.             mapResult.put ("forwardprice", dblForwardPrice);

  158.             mapResult.put ("parstandardfra", dblParStandardFRA);

  159.             mapResult.put ("parstandardfradc", dblParDCForward);

  160.             mapResult.put ("shiftedlognormalconvexityadjustment",
  161.                 dblShiftedLogNormalConvexityAdjustmentExponent);

  162.             mapResult.put ("shiftedlognormalconvexitycorrection", dblShiftedLogNormalParMarketFRA -
  163.                 dblParStandardFRA);

  164.             mapResult.put ("shiftedlognormalparmarketfra", dblShiftedLogNormalParMarketFRA);
  165.         } catch (java.lang.Exception e) {
  166.             e.printStackTrace();

  167.             return null;
  168.         }

  169.         mapResult.put ("calctime", (System.nanoTime() - lStart) * 1.e-09);

  170.         return mapResult;
  171.     }
  172. }