FloatFloatComponent.java

  1. package org.drip.product.rates;

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

  80. /**
  81.  * <i>FloatFloatComponent</i> contains the implementation of the Float-Float Index Basis Swap product
  82.  * contract/valuation details. It is made off one Reference Floating stream and one Derived floating stream.
  83.  * It exports the following functionality:
  84.  *
  85.  * <br><br>
  86.  *  <ul>
  87.  *      <li>
  88.  *          Standard/Custom Constructor for the FloatFloatComponent
  89.  *      </li>
  90.  *      <li>
  91.  *          Dates: Effective, Maturity, Coupon dates and Product settlement Parameters
  92.  *      </li>
  93.  *      <li>
  94.  *          Coupon/Notional Outstanding as well as schedules
  95.  *      </li>
  96.  *      <li>
  97.  *          Retrieve the constituent floating streams
  98.  *      </li>
  99.  *      <li>
  100.  *          Market Parameters: Discount, Forward, Credit, Treasury Curves
  101.  *      </li>
  102.  *      <li>
  103.  *          Cash Flow Periods: Coupon flows and (Optionally) Loss Flows
  104.  *      </li>
  105.  *      <li>
  106.  *          Valuation: Named Measure Generation
  107.  *      </li>
  108.  *      <li>
  109.  *          Calibration: The codes and constraints generation
  110.  *      </li>
  111.  *      <li>
  112.  *          Jacobians: Quote/DF and PV/DF micro-Jacobian generation
  113.  *      </li>
  114.  *      <li>
  115.  *          Serialization into and de-serialization out of byte arrays
  116.  *      </li>
  117.  *  </ul>
  118.  *
  119.  * <br><br>
  120.  *  <ul>
  121.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  122.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  123.  *      <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>
  124.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/product/rates/README.md">Fixed Income Multi-Stream Components</a></li>
  125.  *  </ul>
  126.  * <br><br>
  127.  *
  128.  * @author Lakshmi Krishnamurthy
  129.  */

  130. public class FloatFloatComponent extends org.drip.product.rates.DualStreamComponent {
  131.     private java.lang.String _strCode = "";
  132.     private org.drip.product.rates.Stream _floatDerived = null;
  133.     private org.drip.product.rates.Stream _floatReference = null;
  134.     private org.drip.param.valuation.CashSettleParams _csp = null;

  135.     /**
  136.      * Construct the FloatFloatComponent from the Reference and the Derived Floating Streams.
  137.      *
  138.      * @param floatReference The Reference Floating Stream (e.g., 6M LIBOR/EURIBOR Leg)
  139.      * @param floatDerived The Derived Floating Stream (e.g., 3M LIBOR/EURIBOR Leg)
  140.      * @param csp Cash Settle Parameters Instance
  141.      *
  142.      * @throws java.lang.Exception Thrown if the inputs are invalid
  143.      */

  144.     public FloatFloatComponent (
  145.         final org.drip.product.rates.Stream floatReference,
  146.         final org.drip.product.rates.Stream floatDerived,
  147.         final org.drip.param.valuation.CashSettleParams csp)
  148.         throws java.lang.Exception
  149.     {
  150.         if (null == (_floatReference = floatReference) || null == (_floatDerived = floatDerived))
  151.             throw new java.lang.Exception ("FloatFloatComponent ctr: Invalid Inputs");

  152.         _csp = csp;
  153.     }

  154.     @Override public void setPrimaryCode (
  155.         final java.lang.String strCode)
  156.     {
  157.         _strCode = strCode;
  158.     }

  159.     @Override public java.lang.String primaryCode()
  160.     {
  161.         return _strCode;
  162.     }

  163.     @Override public java.lang.String name()
  164.     {
  165.         return _strCode;
  166.     }

  167.     @Override public org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.String> couponCurrency()
  168.     {
  169.         org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.String> mapCouponCurrency = new
  170.             org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.String>();

  171.         mapCouponCurrency.put ("DERIVED", _floatDerived.couponCurrency());

  172.         mapCouponCurrency.put ("REFERENCE", _floatReference.couponCurrency());

  173.         return mapCouponCurrency;
  174.     }

  175.     @Override public java.lang.String payCurrency()
  176.     {
  177.         return _floatReference.payCurrency();
  178.     }

  179.     @Override public java.lang.String principalCurrency()
  180.     {
  181.         return null;
  182.     }

  183.     @Override public double initialNotional()
  184.         throws java.lang.Exception
  185.     {
  186.         return _floatReference.initialNotional();
  187.     }

  188.     @Override public double notional (
  189.         final int iDate)
  190.         throws java.lang.Exception
  191.     {
  192.         return _floatReference.notional (iDate);
  193.     }

  194.     @Override public double notional (
  195.         final int iDate1,
  196.         final int iDate2)
  197.         throws java.lang.Exception
  198.     {
  199.         return _floatReference.notional (iDate1, iDate2);
  200.     }

  201.     @Override public org.drip.analytics.output.CompositePeriodCouponMetrics couponMetrics (
  202.         final int iAccrualEndDate,
  203.         final org.drip.param.valuation.ValuationParams valParams,
  204.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs)
  205.     {
  206.         return _floatReference.coupon (iAccrualEndDate, valParams, csqs);
  207.     }

  208.     @Override public int freq()
  209.     {
  210.         return _floatReference.freq();
  211.     }

  212.     @Override public org.drip.state.identifier.EntityCDSLabel creditLabel()
  213.     {
  214.         return null;
  215.     }

  216.     @Override public
  217.         org.drip.analytics.support.CaseInsensitiveTreeMap<org.drip.state.identifier.ForwardLabel>
  218.             forwardLabel()
  219.     {
  220.         org.drip.analytics.support.CaseInsensitiveTreeMap<org.drip.state.identifier.ForwardLabel>
  221.             mapForwardLabel = new
  222.                 org.drip.analytics.support.CaseInsensitiveTreeMap<org.drip.state.identifier.ForwardLabel>();

  223.         mapForwardLabel.put (
  224.             "REFERENCE",
  225.             _floatReference.forwardLabel()
  226.         );

  227.         mapForwardLabel.put (
  228.             "DERIVED",
  229.             _floatDerived.forwardLabel()
  230.         );

  231.         return mapForwardLabel;
  232.     }

  233.     @Override public
  234.         org.drip.analytics.support.CaseInsensitiveTreeMap<org.drip.state.identifier.OTCFixFloatLabel>
  235.             otcFixFloatLabel()
  236.     {
  237.         return null;
  238.     }

  239.     @Override public org.drip.state.identifier.FundingLabel fundingLabel()
  240.     {
  241.         return _floatReference.fundingLabel();
  242.     }

  243.     @Override public org.drip.state.identifier.GovvieLabel govvieLabel()
  244.     {
  245.         return org.drip.state.identifier.GovvieLabel.Standard (payCurrency());
  246.     }

  247.     @Override public org.drip.analytics.support.CaseInsensitiveTreeMap<org.drip.state.identifier.FXLabel>
  248.         fxLabel()
  249.     {
  250.         org.drip.state.identifier.FXLabel fxLabelReference = _floatReference.fxLabel();

  251.         org.drip.state.identifier.FXLabel fxLabelDerived = _floatDerived.fxLabel();

  252.         if (null != fxLabelReference && null != fxLabelDerived) return null;

  253.         org.drip.analytics.support.CaseInsensitiveTreeMap<org.drip.state.identifier.FXLabel> mapFXLabel = new
  254.                 org.drip.analytics.support.CaseInsensitiveTreeMap<org.drip.state.identifier.FXLabel>();

  255.         if (null != fxLabelReference) mapFXLabel.put ("REFERENCE", fxLabelReference);

  256.         if (null != fxLabelDerived) mapFXLabel.put ("DERIVED", fxLabelDerived);

  257.         return mapFXLabel;
  258.     }

  259.     @Override public
  260.         org.drip.analytics.support.CaseInsensitiveTreeMap<org.drip.state.identifier.VolatilityLabel>
  261.             volatilityLabel()
  262.     {
  263.         return null;
  264.     }

  265.     @Override public org.drip.product.rates.Stream referenceStream()
  266.     {
  267.         return _floatReference;
  268.     }

  269.     @Override public org.drip.product.rates.Stream derivedStream()
  270.     {
  271.         return _floatDerived;
  272.     }

  273.     @Override public org.drip.analytics.date.JulianDate effectiveDate()
  274.     {
  275.         org.drip.analytics.date.JulianDate dtFloatReferenceEffective = _floatReference.effective();

  276.         org.drip.analytics.date.JulianDate dtFloatDerivedEffective = _floatDerived.effective();

  277.         if (null == dtFloatReferenceEffective || null == dtFloatDerivedEffective) return null;

  278.         return dtFloatReferenceEffective.julian() < dtFloatDerivedEffective.julian() ?
  279.             dtFloatReferenceEffective : dtFloatDerivedEffective;
  280.     }

  281.     @Override public org.drip.analytics.date.JulianDate maturityDate()
  282.     {
  283.         org.drip.analytics.date.JulianDate dtFloatReferenceMaturity = _floatReference.maturity();

  284.         org.drip.analytics.date.JulianDate dtFloatDerivedMaturity = _floatDerived.maturity();

  285.         if (null == dtFloatReferenceMaturity || null == dtFloatDerivedMaturity) return null;

  286.         return dtFloatReferenceMaturity.julian() > dtFloatDerivedMaturity.julian() ?
  287.             dtFloatReferenceMaturity : dtFloatDerivedMaturity;
  288.     }

  289.     @Override public org.drip.analytics.date.JulianDate firstCouponDate()
  290.     {
  291.         org.drip.analytics.date.JulianDate dtFloatReferenceFirstCoupon = _floatReference.firstCouponDate();

  292.         org.drip.analytics.date.JulianDate dtFloatDerivedFirstCoupon = _floatDerived.firstCouponDate();

  293.         if (null == dtFloatReferenceFirstCoupon || null == dtFloatDerivedFirstCoupon) return null;

  294.         return dtFloatReferenceFirstCoupon.julian() < dtFloatDerivedFirstCoupon.julian() ?
  295.             dtFloatReferenceFirstCoupon : dtFloatDerivedFirstCoupon;
  296.     }

  297.     @Override public java.util.List<org.drip.analytics.cashflow.CompositePeriod> couponPeriods()
  298.     {
  299.         java.util.List<org.drip.analytics.cashflow.CompositePeriod> lsCP = new
  300.             java.util.ArrayList<org.drip.analytics.cashflow.CompositePeriod>();

  301.         lsCP.addAll (_floatReference.cashFlowPeriod());

  302.         lsCP.addAll (_floatDerived.cashFlowPeriod());

  303.         return lsCP;
  304.     }

  305.     @Override public org.drip.param.valuation.CashSettleParams cashSettleParams()
  306.     {
  307.         return _csp;
  308.     }

  309.     @Override public org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> value (
  310.         final org.drip.param.valuation.ValuationParams valParams,
  311.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  312.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  313.         final org.drip.param.valuation.ValuationCustomizationParams vcp)
  314.     {
  315.         long lStart = System.nanoTime();

  316.         org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> mapFloatReferenceStreamResult =
  317.             _floatReference.value (valParams, pricerParams, csqs, vcp);

  318.         org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> mapFloatDerivedStreamResult =
  319.             _floatDerived.value (valParams, pricerParams, csqs, vcp);

  320.         if (null == mapFloatReferenceStreamResult || 0 == mapFloatReferenceStreamResult.size() || null ==
  321.             mapFloatDerivedStreamResult || 0 == mapFloatDerivedStreamResult.size())
  322.             return null;

  323.         org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> mapResult = new
  324.             org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double>();

  325.         if (!org.drip.analytics.support.Helper.AccumulateMeasures (mapResult,
  326.             _floatReference.name(), mapFloatReferenceStreamResult))
  327.             return null;

  328.         if (!org.drip.analytics.support.Helper.AccumulateMeasures (mapResult, _floatDerived.name(),
  329.             mapFloatDerivedStreamResult))
  330.             return null;

  331.         mapResult.put ("ReferenceAccrued01", mapFloatReferenceStreamResult.get ("Accrued01"));

  332.         mapResult.put ("ReferenceAccrued", mapFloatReferenceStreamResult.get ("FloatAccrued"));

  333.         double dblReferenceCleanDV01 = mapFloatReferenceStreamResult.get ("CleanDV01");

  334.         mapResult.put ("ReferenceCleanDV01", dblReferenceCleanDV01);

  335.         double dblReferenceCleanPV = mapFloatReferenceStreamResult.get ("CleanPV");

  336.         mapResult.put ("ReferenceCleanPV", dblReferenceCleanPV);

  337.         mapResult.put ("ReferenceDirtyDV01", mapFloatReferenceStreamResult.get ("DirtyDV01"));

  338.         double dblReferenceDirtyPV = mapFloatReferenceStreamResult.get ("DirtyPV");

  339.         mapResult.put ("ReferenceDirtyPV", dblReferenceDirtyPV);

  340.         mapResult.put ("ReferenceDV01", mapFloatReferenceStreamResult.get ("DV01"));

  341.         mapResult.put ("ReferenceFixing01", mapFloatReferenceStreamResult.get ("Fixing01"));

  342.         double dblReferencePV = mapFloatReferenceStreamResult.get ("PV");

  343.         mapResult.put ("ReferencePV", dblReferencePV);

  344.         mapResult.put ("ReferenceCumulativeConvexityAdjustmentFactor", mapFloatReferenceStreamResult.get
  345.             ("CumulativeConvexityAdjustmentFactor"));

  346.         double dblReferenceCumulativeConvexityAdjustmentPremium = mapFloatReferenceStreamResult.get
  347.             ("CumulativeConvexityAdjustmentPremiumUpfront");

  348.         mapResult.put ("ReferenceCumulativeConvexityAdjustmentPremium",
  349.             dblReferenceCumulativeConvexityAdjustmentPremium);

  350.         mapResult.put ("ReferenceResetDate", mapFloatReferenceStreamResult.get ("ResetDate"));

  351.         mapResult.put ("ReferenceResetRate", mapFloatReferenceStreamResult.get ("ResetRate"));

  352.         mapResult.put ("DerivedAccrued01", mapFloatDerivedStreamResult.get ("Accrued01"));

  353.         mapResult.put ("DerivedAccrued", mapFloatDerivedStreamResult.get ("FloatAccrued"));

  354.         double dblDerivedCleanDV01 = mapFloatDerivedStreamResult.get ("CleanDV01");

  355.         mapResult.put ("DerivedCleanDV01", dblDerivedCleanDV01);

  356.         double dblDerivedCleanPV = mapFloatDerivedStreamResult.get ("CleanPV");

  357.         mapResult.put ("DerivedCleanPV", dblDerivedCleanPV);

  358.         mapResult.put ("DerivedDirtyDV01", mapFloatDerivedStreamResult.get ("DirtyDV01"));

  359.         double dblDerivedDirtyPV = mapFloatDerivedStreamResult.get ("DirtyPV");

  360.         mapResult.put ("DerivedDirtyPV", dblDerivedDirtyPV);

  361.         mapResult.put ("DerivedDV01", mapFloatDerivedStreamResult.get ("DV01"));

  362.         mapResult.put ("DerivedFixing01", mapFloatDerivedStreamResult.get ("Fixing01"));

  363.         double dblDerivedPV = mapFloatDerivedStreamResult.get ("PV");

  364.         mapResult.put ("DerivedPV", dblDerivedPV);

  365.         mapResult.put ("DerivedCumulativeConvexityAdjustmentFactor", mapFloatDerivedStreamResult.get
  366.             ("CumulativeConvexityAdjustmentFactor"));

  367.         double dblDerivedCumulativeConvexityAdjustmentPremium = mapFloatDerivedStreamResult.get
  368.             ("CumulativeConvexityAdjustmentPremiumUpfront");

  369.         mapResult.put ("DerivedCumulativeConvexityAdjustmentPremium",
  370.             dblDerivedCumulativeConvexityAdjustmentPremium);

  371.         mapResult.put ("DerivedResetDate", mapFloatDerivedStreamResult.get ("ResetDate"));

  372.         mapResult.put ("DerivedResetRate", mapFloatDerivedStreamResult.get ("ResetRate"));

  373.         double dblCleanPV = dblReferenceCleanPV + dblDerivedCleanPV;

  374.         mapResult.put ("CleanPV", dblCleanPV);

  375.         mapResult.put ("DirtyPV", dblDerivedCleanPV + dblDerivedDirtyPV);

  376.         mapResult.put ("PV", dblReferencePV + dblDerivedPV);

  377.         mapResult.put ("CumulativeConvexityAdjustmentPremium", _floatReference.initialNotional() *
  378.             dblReferenceCumulativeConvexityAdjustmentPremium + _floatDerived.initialNotional() *
  379.                 dblDerivedCumulativeConvexityAdjustmentPremium);

  380.         mapResult.put ("Upfront", mapFloatReferenceStreamResult.get ("Upfront") +
  381.             mapFloatDerivedStreamResult.get ("Upfront"));

  382.         mapResult.put ("ReferenceParBasisSpread", -1. * (dblReferenceCleanPV + dblDerivedCleanPV) /
  383.             dblReferenceCleanDV01);

  384.         mapResult.put ("DerivedParBasisSpread", -1. * (dblReferenceCleanPV + dblDerivedCleanPV) /
  385.             dblDerivedCleanDV01);

  386.         double dblValueNotional = java.lang.Double.NaN;

  387.         try {
  388.             dblValueNotional = notional (valParams.valueDate());
  389.         } catch (java.lang.Exception e) {
  390.             e.printStackTrace();
  391.         }

  392.         try {
  393.             if (org.drip.numerical.common.NumberUtil.IsValid (dblValueNotional)) {
  394.                 double dblCleanPrice = 100. * (1. + (dblCleanPV / initialNotional() / dblValueNotional));

  395.                 mapResult.put ("CleanPrice", dblCleanPrice);

  396.                 mapResult.put ("Price", dblCleanPrice);
  397.             }
  398.         } catch (java.lang.Exception e) {
  399.             e.printStackTrace();

  400.             return null;
  401.         }

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

  403.         return mapResult;
  404.     }

  405.     @Override public java.util.Set<java.lang.String> measureNames()
  406.     {
  407.         java.util.Set<java.lang.String> setstrMeasureNames = new java.util.TreeSet<java.lang.String>();

  408.         setstrMeasureNames.add ("CalcTime");

  409.         setstrMeasureNames.add ("CleanPrice");

  410.         setstrMeasureNames.add ("CleanPV");

  411.         setstrMeasureNames.add ("DerivedAccrued01");

  412.         setstrMeasureNames.add ("DerivedAccrued");

  413.         setstrMeasureNames.add ("DerivedCleanDV01");

  414.         setstrMeasureNames.add ("DerivedCleanPV");

  415.         setstrMeasureNames.add ("DerivedDirtyDV01");

  416.         setstrMeasureNames.add ("DerivedDirtyPV");

  417.         setstrMeasureNames.add ("DerivedDV01");

  418.         setstrMeasureNames.add ("DerivedFixing01");

  419.         setstrMeasureNames.add ("DerivedParBasisSpread");

  420.         setstrMeasureNames.add ("DerivedPV");

  421.         setstrMeasureNames.add ("DerivedCumulativeConvexityAdjustmentFactor");

  422.         setstrMeasureNames.add ("DerivedCumulativeConvexityAdjustmentPremium");

  423.         setstrMeasureNames.add ("DerivedResetDate");

  424.         setstrMeasureNames.add ("DerivedResetRate");

  425.         setstrMeasureNames.add ("DirtyPV");

  426.         setstrMeasureNames.add ("Price");

  427.         setstrMeasureNames.add ("PV");

  428.         setstrMeasureNames.add ("CumulativeConvexityAdjustmentPremium");

  429.         setstrMeasureNames.add ("ReferenceAccrued01");

  430.         setstrMeasureNames.add ("ReferenceAccrued");

  431.         setstrMeasureNames.add ("ReferenceCleanDV01");

  432.         setstrMeasureNames.add ("ReferenceCleanPV");

  433.         setstrMeasureNames.add ("ReferenceDirtyDV01");

  434.         setstrMeasureNames.add ("ReferenceDirtyPV");

  435.         setstrMeasureNames.add ("ReferenceDV01");

  436.         setstrMeasureNames.add ("ReferenceFixing01");

  437.         setstrMeasureNames.add ("ReferenceParBasisSpread");

  438.         setstrMeasureNames.add ("ReferenceCumulativeConvexityAdjustmentFactor");

  439.         setstrMeasureNames.add ("ReferenceCumulativeConvexityAdjustmentPremium");

  440.         setstrMeasureNames.add ("ReferencePV");

  441.         setstrMeasureNames.add ("ReferenceResetDate");

  442.         setstrMeasureNames.add ("ReferenceResetRate");

  443.         setstrMeasureNames.add ("Upfront");

  444.         return setstrMeasureNames;
  445.     }

  446.     @Override public double pv (
  447.         final org.drip.param.valuation.ValuationParams valParams,
  448.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  449.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  450.         final org.drip.param.valuation.ValuationCustomizationParams quotingParams)
  451.         throws java.lang.Exception
  452.     {
  453.         org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> mapFloatReferenceStreamResult =
  454.             _floatReference.value (valParams, pricerParams, csqs, quotingParams);

  455.         org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> mapFloatDerivedStreamResult =
  456.             _floatDerived.value (valParams, pricerParams, csqs, quotingParams);

  457.         if (null == mapFloatReferenceStreamResult || !mapFloatReferenceStreamResult.containsKey ("DirtyPV")
  458.             || null == mapFloatDerivedStreamResult || !mapFloatDerivedStreamResult.containsKey ("DirtyPV"))
  459.             throw new java.lang.Exception
  460.                 ("FloatFloatComponent::pv => Cannot Compute Constituent Stream Value Metrics");

  461.         return mapFloatReferenceStreamResult.get ("DirtyPV") + mapFloatDerivedStreamResult.get ("DirtyPV");
  462.     }

  463.     @Override public org.drip.numerical.differentiation.WengertJacobian jackDDirtyPVDManifestMeasure (
  464.         final org.drip.param.valuation.ValuationParams valParams,
  465.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  466.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  467.         final org.drip.param.valuation.ValuationCustomizationParams quotingParams)
  468.     {
  469.         return null;
  470.     }

  471.     @Override public org.drip.numerical.differentiation.WengertJacobian manifestMeasureDFMicroJack (
  472.         final java.lang.String strManifestMeasure,
  473.         final org.drip.param.valuation.ValuationParams valParams,
  474.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  475.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  476.         final org.drip.param.valuation.ValuationCustomizationParams quotingParams)
  477.     {
  478.         return null;
  479.     }

  480.     @Override public org.drip.product.calib.ProductQuoteSet calibQuoteSet (
  481.         final org.drip.state.representation.LatentStateSpecification[] aLSS)
  482.     {
  483.         try {
  484.             return new org.drip.product.calib.FloatFloatQuoteSet (aLSS);
  485.         } catch (java.lang.Exception e) {
  486.             e.printStackTrace();
  487.         }

  488.         return null;
  489.     }

  490.     @Override public org.drip.state.estimator.PredictorResponseWeightConstraint fundingPRWC (
  491.         final org.drip.param.valuation.ValuationParams valParams,
  492.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  493.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  494.         final org.drip.param.valuation.ValuationCustomizationParams quotingParams,
  495.         final org.drip.product.calib.ProductQuoteSet pqs)
  496.     {
  497.         if (null == valParams || null == pqs || !(pqs instanceof org.drip.product.calib.FloatFloatQuoteSet))
  498.             return null;

  499.         if (valParams.valueDate() >= maturityDate().julian()) return null;

  500.         double dblPV = 0.;
  501.         org.drip.product.calib.FloatingStreamQuoteSet fsqsDerived = null;
  502.         org.drip.product.calib.FloatingStreamQuoteSet fsqsReference = null;
  503.         org.drip.product.calib.FloatFloatQuoteSet ffqs = (org.drip.product.calib.FloatFloatQuoteSet) pqs;

  504.         if (!ffqs.containsPV() && !ffqs.containsDerivedParBasisSpread() &&
  505.             !ffqs.containsReferenceParBasisSpread())
  506.             return null;

  507.         org.drip.state.representation.LatentStateSpecification[] aLSS = pqs.lss();

  508.         try {
  509.             fsqsDerived = new org.drip.product.calib.FloatingStreamQuoteSet (aLSS);

  510.             fsqsReference = new org.drip.product.calib.FloatingStreamQuoteSet (aLSS);

  511.             if (ffqs.containsPV()) dblPV = ffqs.pv();

  512.             if (ffqs.containsDerivedParBasisSpread() && !fsqsDerived.setSpread
  513.                 (ffqs.derivedParBasisSpread()))
  514.                 return null;

  515.             if (ffqs.containsReferenceParBasisSpread() && !fsqsReference.setSpread
  516.                 (ffqs.referenceParBasisSpread()))
  517.                 return null;
  518.         } catch (java.lang.Exception e) {
  519.             e.printStackTrace();

  520.             return null;
  521.         }

  522.         org.drip.state.estimator.PredictorResponseWeightConstraint prwcDerived = _floatDerived.fundingPRWC
  523.             (valParams, pricerParams, csqs, quotingParams, fsqsDerived);

  524.         org.drip.state.estimator.PredictorResponseWeightConstraint prwcReference =
  525.             _floatReference.fundingPRWC (valParams, pricerParams, csqs, quotingParams, fsqsReference);

  526.         if (null == prwcDerived && null == prwcReference) return null;

  527.         org.drip.state.estimator.PredictorResponseWeightConstraint prwc = new
  528.             org.drip.state.estimator.PredictorResponseWeightConstraint();

  529.         if (!prwc.absorb (prwcDerived)) return null;

  530.         if (!prwc.absorb (prwcReference)) return null;

  531.         return !prwc.updateValue (dblPV) ? null : prwc;
  532.     }

  533.     @Override public org.drip.state.estimator.PredictorResponseWeightConstraint forwardPRWC (
  534.         final org.drip.param.valuation.ValuationParams valParams,
  535.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  536.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  537.         final org.drip.param.valuation.ValuationCustomizationParams quotingParams,
  538.         final org.drip.product.calib.ProductQuoteSet pqs)
  539.     {
  540.         if (null == valParams || null == pqs || !(pqs instanceof org.drip.product.calib.FloatFloatQuoteSet))
  541.             return null;

  542.         if (valParams.valueDate() >= maturityDate().julian()) return null;

  543.         double dblPV = 0.;
  544.         org.drip.product.calib.FloatingStreamQuoteSet fsqsDerived = null;
  545.         org.drip.product.calib.FloatingStreamQuoteSet fsqsReference = null;
  546.         org.drip.product.calib.FloatFloatQuoteSet ffqs = (org.drip.product.calib.FloatFloatQuoteSet) pqs;

  547.         if (!ffqs.containsPV() && !ffqs.containsDerivedParBasisSpread() &&
  548.             !ffqs.containsReferenceParBasisSpread())
  549.             return null;

  550.         org.drip.state.representation.LatentStateSpecification[] aLSS = pqs.lss();

  551.         try {
  552.             fsqsDerived = new org.drip.product.calib.FloatingStreamQuoteSet (aLSS);

  553.             fsqsReference = new org.drip.product.calib.FloatingStreamQuoteSet (aLSS);

  554.             if (ffqs.containsPV()) dblPV = ffqs.pv();

  555.             if (ffqs.containsDerivedParBasisSpread()) fsqsDerived.setSpread (ffqs.derivedParBasisSpread());

  556.             if (ffqs.containsReferenceParBasisSpread())
  557.                 fsqsReference.setSpread (ffqs.referenceParBasisSpread());
  558.         } catch (java.lang.Exception e) {
  559.             e.printStackTrace();

  560.             return null;
  561.         }

  562.         org.drip.state.estimator.PredictorResponseWeightConstraint prwcDerived = _floatDerived.forwardPRWC
  563.             (valParams, pricerParams, csqs, quotingParams, fsqsDerived);

  564.         org.drip.state.estimator.PredictorResponseWeightConstraint prwcReference =
  565.             _floatReference.forwardPRWC (valParams, pricerParams, csqs, quotingParams, fsqsReference);

  566.         if (null == prwcDerived && null == prwcReference) return null;

  567.         org.drip.state.estimator.PredictorResponseWeightConstraint prwc = new
  568.             org.drip.state.estimator.PredictorResponseWeightConstraint();

  569.         if (!prwc.absorb (prwcDerived)) return null;

  570.         if (!prwc.absorb (prwcReference)) return null;

  571.         if (!prwc.updateValue (dblPV)) return null;

  572.         return prwc;
  573.     }

  574.     @Override public org.drip.state.estimator.PredictorResponseWeightConstraint fundingForwardPRWC (
  575.         final org.drip.param.valuation.ValuationParams valParams,
  576.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  577.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  578.         final org.drip.param.valuation.ValuationCustomizationParams quotingParams,
  579.         final org.drip.product.calib.ProductQuoteSet pqs)
  580.     {
  581.         if (null == valParams || null == pqs || !(pqs instanceof org.drip.product.calib.FloatFloatQuoteSet))
  582.             return null;

  583.         if (valParams.valueDate() >= maturityDate().julian()) return null;

  584.         double dblPV = 0.;
  585.         org.drip.product.calib.FloatingStreamQuoteSet fsqsDerived = null;
  586.         org.drip.product.calib.FloatingStreamQuoteSet fsqsReference = null;
  587.         org.drip.product.calib.FloatFloatQuoteSet ffqs = (org.drip.product.calib.FloatFloatQuoteSet) pqs;

  588.         if (!ffqs.containsPV() && !ffqs.containsDerivedParBasisSpread() &&
  589.             !ffqs.containsReferenceParBasisSpread())
  590.             return null;

  591.         org.drip.state.representation.LatentStateSpecification[] aLSS = pqs.lss();

  592.         try {
  593.             fsqsDerived = new org.drip.product.calib.FloatingStreamQuoteSet (aLSS);

  594.             fsqsReference = new org.drip.product.calib.FloatingStreamQuoteSet (aLSS);

  595.             if (ffqs.containsPV()) dblPV = ffqs.pv();

  596.             if (ffqs.containsDerivedParBasisSpread() && !fsqsDerived.setSpread
  597.                 (ffqs.derivedParBasisSpread()))
  598.                 return null;

  599.             if (ffqs.containsReferenceParBasisSpread() && !fsqsReference.setSpread
  600.                 (ffqs.referenceParBasisSpread()))
  601.                 return null;
  602.         } catch (java.lang.Exception e) {
  603.             e.printStackTrace();

  604.             return null;
  605.         }

  606.         org.drip.state.estimator.PredictorResponseWeightConstraint prwcDerived =
  607.             _floatDerived.fundingForwardPRWC (valParams, pricerParams, csqs, quotingParams, fsqsDerived);

  608.         org.drip.state.estimator.PredictorResponseWeightConstraint prwcReference =
  609.             _floatReference.fundingForwardPRWC (valParams, pricerParams, csqs, quotingParams, fsqsReference);

  610.         if (null == prwcDerived && null == prwcReference) return null;

  611.         org.drip.state.estimator.PredictorResponseWeightConstraint prwc = new
  612.             org.drip.state.estimator.PredictorResponseWeightConstraint();

  613.         if (!prwc.absorb (prwcDerived)) return null;

  614.         if (!prwc.absorb (prwcReference)) return null;

  615.         if (!prwc.updateValue (dblPV)) return null;

  616.         return prwc;
  617.     }

  618.     @Override public org.drip.state.estimator.PredictorResponseWeightConstraint fxPRWC (
  619.         final org.drip.param.valuation.ValuationParams valParams,
  620.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  621.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  622.         final org.drip.param.valuation.ValuationCustomizationParams vcp,
  623.         final org.drip.product.calib.ProductQuoteSet pqs)
  624.     {
  625.         return null;
  626.     }

  627.     @Override public org.drip.state.estimator.PredictorResponseWeightConstraint govviePRWC (
  628.         final org.drip.param.valuation.ValuationParams valParams,
  629.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  630.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  631.         final org.drip.param.valuation.ValuationCustomizationParams vcp,
  632.         final org.drip.product.calib.ProductQuoteSet pqs)
  633.     {
  634.         return null;
  635.     }

  636.     @Override public org.drip.state.estimator.PredictorResponseWeightConstraint volatilityPRWC (
  637.         final org.drip.param.valuation.ValuationParams valParams,
  638.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  639.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  640.         final org.drip.param.valuation.ValuationCustomizationParams quotingParams,
  641.         final org.drip.product.calib.ProductQuoteSet pqs)
  642.     {
  643.         return null;
  644.     }

  645.     @Override public org.drip.analytics.support.CaseInsensitiveTreeMap<java.lang.Double> calibMeasures (
  646.         final org.drip.param.valuation.ValuationParams valParams,
  647.         final org.drip.param.pricer.CreditPricerParams pricerParams,
  648.         final org.drip.param.market.CurveSurfaceQuoteContainer csqs,
  649.         final org.drip.param.valuation.ValuationCustomizationParams quotingParams)
  650.     {
  651.         return null;
  652.     }
  653. }