DeterministicCollateralChoiceZeroCoupon.java

  1. package org.drip.sample.piterbarg2012;

  2. import org.drip.analytics.date.*;
  3. import org.drip.function.r1tor1.*;
  4. import org.drip.numerical.common.FormatUtil;
  5. import org.drip.product.params.CurrencyPair;
  6. import org.drip.service.env.EnvManager;
  7. import org.drip.state.creator.*;
  8. import org.drip.state.curve.*;
  9. import org.drip.state.discount.MergedDiscountForwardCurve;
  10. import org.drip.state.fx.FXCurve;
  11. import org.drip.state.identifier.*;
  12. import org.drip.state.nonlinear.*;

  13. /*
  14.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  15.  */

  16. /*!
  17.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  18.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  19.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  20.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  21.  * Copyright (C) 2014 Lakshmi Krishnamurthy
  22.  *
  23.  *  This file is part of DRIP, a free-software/open-source library for buy/side financial/trading model
  24.  *      libraries targeting analysts and developers
  25.  *      https://lakshmidrip.github.io/DRIP/
  26.  *  
  27.  *  DRIP is composed of four main libraries:
  28.  *  
  29.  *  - DRIP Fixed Income - https://lakshmidrip.github.io/DRIP-Fixed-Income/
  30.  *  - DRIP Asset Allocation - https://lakshmidrip.github.io/DRIP-Asset-Allocation/
  31.  *  - DRIP Numerical Optimizer - https://lakshmidrip.github.io/DRIP-Numerical-Optimizer/
  32.  *  - DRIP Statistical Learning - https://lakshmidrip.github.io/DRIP-Statistical-Learning/
  33.  *
  34.  *  - DRIP Fixed Income: Library for Instrument/Trading Conventions, Treasury Futures/Options,
  35.  *      Funding/Forward/Overnight Curves, Multi-Curve Construction/Valuation, Collateral Valuation and XVA
  36.  *      Metric Generation, Calibration and Hedge Attributions, Statistical Curve Construction, Bond RV
  37.  *      Metrics, Stochastic Evolution and Option Pricing, Interest Rate Dynamics and Option Pricing, LMM
  38.  *      Extensions/Calibrations/Greeks, Algorithmic Differentiation, and Asset Backed Models and Analytics.
  39.  *
  40.  *  - DRIP Asset Allocation: Library for model libraries for MPT framework, Black Litterman Strategy
  41.  *      Incorporator, Holdings Constraint, and Transaction Costs.
  42.  *
  43.  *  - DRIP Numerical Optimizer: Library for Numerical Optimization and Spline Functionality.
  44.  *
  45.  *  - DRIP Statistical Learning: Library for Statistical Evaluation and Machine Learning.
  46.  *
  47.  *  Licensed under the Apache License, Version 2.0 (the "License");
  48.  *      you may not use this file except in compliance with the License.
  49.  *  
  50.  *  You may obtain a copy of the License at
  51.  *      http://www.apache.org/licenses/LICENSE-2.0
  52.  *  
  53.  *  Unless required by applicable law or agreed to in writing, software
  54.  *      distributed under the License is distributed on an "AS IS" BASIS,
  55.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  56.  *  
  57.  *  See the License for the specific language governing permissions and
  58.  *      limitations under the License.
  59.  */

  60. /**
  61.  * DeterministicCollateralChoiceZeroCoupon contains an analysis of the impact on the single cash flow
  62.  *  discount factor of a Zero Coupon collateralized using a deterministic choice of collateral.
  63.  *
  64.  * @author Lakshmi Krishnamurthy
  65.  */

  66. public class DeterministicCollateralChoiceZeroCoupon {
  67.     public static final void main (
  68.         final String[] astrArgs)
  69.         throws Exception
  70.     {
  71.         /*
  72.          * Initialize the Credit Analytics Library
  73.          */

  74.         EnvManager.InitEnv ("");

  75.         JulianDate dtToday = DateUtil.Today();

  76.         String strDomesticCurrency = "USD";
  77.         String strForeignCurrency = "EUR";
  78.         double dblDomesticCollateralRate = 0.03;
  79.         double dblForeignCollateralRate = 0.02;
  80.         double dblCollateralizedFXRate = 1.03;
  81.         double dblForeignRatesVolatility = 0.20;
  82.         double dblFXVolatility = 0.10;
  83.         double dblFXForeignRatesCorrelation = 0.30;
  84.         int iDiscreteCollateralizationIncrement = 30; // 30 Days
  85.         String strCollateralizationCheckTenor = "5Y";

  86.         MergedDiscountForwardCurve dcCcyDomesticCollatDomestic = ScenarioDiscountCurveBuilder.ExponentiallyCompoundedFlatRate (
  87.             dtToday,
  88.             strDomesticCurrency,
  89.             dblDomesticCollateralRate
  90.         );

  91.         MergedDiscountForwardCurve dcCcyForeignCollatForeign = ScenarioDiscountCurveBuilder.ExponentiallyCompoundedFlatRate (
  92.             dtToday,
  93.             strForeignCurrency,
  94.             dblForeignCollateralRate
  95.         );

  96.         CurrencyPair cp = CurrencyPair.FromCode (strForeignCurrency + "/" + strDomesticCurrency);

  97.         FXCurve fxCurve = new FlatForwardFXCurve (
  98.             dtToday.julian(),
  99.             cp,
  100.             dblCollateralizedFXRate,
  101.             new int[] {dtToday.julian()},
  102.             new double[] {dblCollateralizedFXRate}
  103.         );

  104.         ForeignCollateralizedDiscountCurve dcCcyDomesticCollatForeign = new ForeignCollateralizedDiscountCurve (
  105.             strDomesticCurrency,
  106.             dcCcyForeignCollatForeign,
  107.             fxCurve,
  108.             new FlatForwardVolatilityCurve (
  109.                 dtToday.julian(),
  110.                 VolatilityLabel.Standard (CollateralLabel.Standard (strForeignCurrency)),
  111.                 cp.denomCcy(),
  112.                 new int[] {dtToday.julian()},
  113.                 new double[] {dblForeignRatesVolatility}
  114.             ),
  115.             new FlatForwardVolatilityCurve (
  116.                 dtToday.julian(),
  117.                 VolatilityLabel.Standard (FXLabel.Standard (cp)),
  118.                 cp.denomCcy(),
  119.                 new int[] {dtToday.julian()},
  120.                 new double[] {dblFXVolatility}
  121.             ),
  122.             new FlatUnivariate (dblFXForeignRatesCorrelation)
  123.         );

  124.         DeterministicCollateralChoiceDiscountCurve dccdc = new DeterministicCollateralChoiceDiscountCurve (
  125.             dcCcyDomesticCollatDomestic,
  126.             new org.drip.state.curve.ForeignCollateralizedDiscountCurve[] {dcCcyDomesticCollatForeign},
  127.             iDiscreteCollateralizationIncrement
  128.         );

  129.         int iStart = dtToday.julian() + iDiscreteCollateralizationIncrement;

  130.         double dblCollateralizationCheckDate = dtToday.addTenor (strCollateralizationCheckTenor).julian();

  131.         System.out.println ("\tPrinting the Zero Coupon Bond Price in Order (Left -> Right):");

  132.         System.out.println ("\t\tDate");

  133.         System.out.println ("\t\tDomestic Collateral Price (Par = 100)");

  134.         System.out.println ("\t\tForeign Collateral Price (Par = 100)");

  135.         System.out.println ("\t\tChoice Collateral Price (Par = 100)");

  136.         System.out.println ("\t-------------------------------------------------------------");

  137.         System.out.println ("\t-------------------------------------------------------------");

  138.         for (int iDate = iStart; iDate <= dblCollateralizationCheckDate; iDate += iDiscreteCollateralizationIncrement) {
  139.             double dblDomesticCollateralDF = dcCcyDomesticCollatDomestic.df (iDate);

  140.             double dblForeignCollateralDF = dcCcyDomesticCollatForeign.df (iDate);

  141.             double dblChoiceCollateralDF = dccdc.df (iDate);

  142.             System.out.println (
  143.                 new JulianDate (iDate) + " => " +
  144.                 FormatUtil.FormatDouble (dblDomesticCollateralDF, 2, 2, 100.) + " | " +
  145.                 FormatUtil.FormatDouble (dblForeignCollateralDF, 2, 2, 100.) + " | " +
  146.                 FormatUtil.FormatDouble (dblChoiceCollateralDF, 2, 2, 100.)
  147.             );
  148.         }
  149.     }
  150. }