MultiCurveFRAMarket.java

  1. package org.drip.sample.fra;

  2. import java.util.*;

  3. import org.drip.analytics.date.*;
  4. import org.drip.function.r1tor1.FlatUnivariate;
  5. import org.drip.param.creator.*;
  6. import org.drip.param.market.CurveSurfaceQuoteContainer;
  7. import org.drip.param.valuation.ValuationParams;
  8. import org.drip.product.creator.SingleStreamComponentBuilder;
  9. import org.drip.product.fra.FRAMarketComponent;
  10. import org.drip.sample.forward.*;
  11. import org.drip.service.env.EnvManager;
  12. import org.drip.state.creator.ScenarioDeterministicVolatilityBuilder;
  13. import org.drip.state.discount.*;
  14. import org.drip.state.forward.ForwardCurve;
  15. import org.drip.state.identifier.*;

  16. /*
  17.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  18.  */

  19. /*!
  20.  * Copyright (C) 2019 Lakshmi Krishnamurthy
  21.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  22.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  23.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  24.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  25.  * Copyright (C) 2014 Lakshmi Krishnamurthy
  26.  *
  27.  *  This file is part of DROP, an open-source library targeting risk, transaction costs, exposure, margin
  28.  *      calculations, valuation adjustment, and portfolio construction within and across fixed income,
  29.  *      credit, commodity, equity, FX, and structured products.
  30.  *  
  31.  *      https://lakshmidrip.github.io/DROP/
  32.  *  
  33.  *  DROP is composed of three modules:
  34.  *  
  35.  *  - DROP Analytics Core - https://lakshmidrip.github.io/DROP-Analytics-Core/
  36.  *  - DROP Portfolio Core - https://lakshmidrip.github.io/DROP-Portfolio-Core/
  37.  *  - DROP Numerical Core - https://lakshmidrip.github.io/DROP-Numerical-Core/
  38.  *
  39.  *  DROP Analytics Core implements libraries for the following:
  40.  *  - Fixed Income Analytics
  41.  *  - Asset Backed Analytics
  42.  *  - XVA Analytics
  43.  *  - Exposure and Margin Analytics
  44.  *
  45.  *  DROP Portfolio Core implements libraries for the following:
  46.  *  - Asset Allocation Analytics
  47.  *  - Transaction Cost Analytics
  48.  *
  49.  *  DROP Numerical Core implements libraries for the following:
  50.  *  - Statistical Learning
  51.  *  - Numerical Optimizer
  52.  *  - Spline Builder
  53.  *  - Algorithm Support
  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>MultiCurveFRAMarket</i> contains the demonstration of the Market Multi-Curve FRA Product sample.
  84.  *  
  85.  * <br><br>
  86.  *  <ul>
  87.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/AnalyticsCore.md">Analytics Core Module</a></li>
  88.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics Library</a></li>
  89.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/README.md">Sample</a></li>
  90.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/fra/README.md">FRA Analytics</a></li>
  91.  *  </ul>
  92.  * <br><br>
  93.  *
  94.  * @author Lakshmi Krishnamurthy
  95.  */

  96. public class MultiCurveFRAMarket {
  97.     public static final void main (
  98.         final String[] astrArgs)
  99.         throws Exception
  100.     {
  101.         /*
  102.          * Initialize the Credit Analytics Library
  103.          */

  104.         EnvManager.InitEnv ("");

  105.         String strTenor = "6M";
  106.         String strCurrency = "JPY";
  107.         double dblEURIBOR6MVol = 0.37;
  108.         double dblEONIAVol = 0.37;
  109.         double dblEONIAEURIBOR6MCorrelation = 0.8;

  110.         JulianDate dtToday = DateUtil.Today();

  111.         MergedDiscountForwardCurve dcEONIA = OvernightIndexCurve.MakeDC (
  112.             dtToday,
  113.             strCurrency
  114.         );

  115.         ForwardCurve fcEURIBOR6M = IBOR6MQuarticPolyVanilla.Make6MForward (
  116.             dtToday,
  117.             strCurrency,
  118.             strTenor
  119.         );

  120.         ForwardLabel fri = ForwardLabel.Create (
  121.             strCurrency,
  122.             strTenor
  123.         );

  124.         FundingLabel fundingLabel = FundingLabel.Standard (strCurrency);

  125.         JulianDate dtForwardStart = dtToday.addTenor (strTenor);

  126.         FRAMarketComponent fra = SingleStreamComponentBuilder.FRAMarket (
  127.             dtForwardStart,
  128.             fri,
  129.             0.006
  130.         );

  131.         CurveSurfaceQuoteContainer mktParams = MarketParamsBuilder.Create (
  132.             dcEONIA,
  133.             fcEURIBOR6M,
  134.             null,
  135.             null,
  136.             null,
  137.             null,
  138.             null,
  139.             null
  140.         );

  141.         ValuationParams valParams = new ValuationParams (
  142.             dtToday,
  143.             dtToday,
  144.             strCurrency
  145.         );

  146.         mktParams.setForwardVolatility (
  147.             ScenarioDeterministicVolatilityBuilder.FlatForward (
  148.                 dtToday.julian(),
  149.                 VolatilityLabel.Standard (fri),
  150.                 fri.currency(),
  151.                 dblEURIBOR6MVol
  152.             )
  153.         );

  154.         mktParams.setFundingVolatility (
  155.             ScenarioDeterministicVolatilityBuilder.FlatForward (
  156.                 dtToday.julian(),
  157.                 VolatilityLabel.Standard (fundingLabel),
  158.                 fri.currency(),
  159.                 dblEONIAVol
  160.             )
  161.         );

  162.         mktParams.setForwardFundingCorrelation (
  163.             fri,
  164.             fundingLabel,
  165.             new FlatUnivariate (dblEONIAEURIBOR6MCorrelation)
  166.         );

  167.         Map<String, Double> mapFRAOutput = fra.value (
  168.             valParams,
  169.             null,
  170.             mktParams,
  171.             null
  172.         );

  173.         for (Map.Entry<String, Double> me : mapFRAOutput.entrySet())
  174.             System.out.println ("\t" + me.getKey() + " => " + me.getValue());

  175.         EnvManager.TerminateEnv();
  176.     }
  177. }