FixedCoupon.java

  1. package org.drip.sample.bondapi;

  2. import java.util.Map;

  3. import org.drip.analytics.date.*;
  4. import org.drip.service.env.EnvManager;
  5. import org.drip.service.product.FixedBondAPI;

  6. /*
  7.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  8.  */

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

  81. /**
  82.  * <i>FixedCoupon</i> demonstrates the Invocation and Examination of the Metrics for the Fixed Coupon Bond.
  83.  *  
  84.  * <br><br>
  85.  *  <ul>
  86.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  87.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  88.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/README.md">DROP API Construction and Usage</a></li>
  89.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/bondapi/README.md">Fixed Coupon KRD + RV Measures</a></li>
  90.  *  </ul>
  91.  * <br><br>
  92.  *
  93.  * @author Lakshmi Krishnamurthy
  94.  */

  95. public class FixedCoupon {

  96.     public static final void main (
  97.         final String[] astrArgs)
  98.         throws Exception
  99.     {
  100.         EnvManager.InitEnv (
  101.             "",
  102.             true
  103.         );

  104.         int iSpotDate = DateUtil.CreateFromYMD (
  105.             2015,
  106.             DateUtil.NOVEMBER,
  107.             18
  108.         ).julian();

  109.         String[] astrFundingCurveDepositTenor = new String[] {
  110.             "2D",
  111.             "1W",
  112.             "1M",
  113.             "2M",
  114.             "3M"
  115.         };

  116.         double[] adblFundingCurveDepositQuote = new double[] {
  117.             0.00195, // 2D
  118.             0.00176, // 1W
  119.             0.00301, // 1M
  120.             0.00401, // 2M
  121.             0.00492  // 3M
  122.         };

  123.         String strFundingCurveDepositMeasure = "ForwardRate";

  124.         double[] adblFundingCurveFuturesQuote = new double[] {
  125.             0.00609,
  126.             0.00687
  127.         };

  128.         String strFundingCurveFuturesMeasure = "ForwardRate";

  129.         String[] astrFundingCurveFixFloatTenor = new String[] {
  130.             "01Y",
  131.             "02Y",
  132.             "03Y",
  133.             "04Y",
  134.             "05Y",
  135.             "06Y",
  136.             "07Y",
  137.             "08Y",
  138.             "09Y",
  139.             "10Y",
  140.             "11Y",
  141.             "12Y",
  142.             "15Y",
  143.             "20Y",
  144.             "25Y",
  145.             "30Y",
  146.             "40Y",
  147.             "50Y"
  148.         };

  149.         double[] adblFundingCurveFixFloatQuote = new double[] {
  150.             0.00762, //  1Y
  151.             0.01055, //  2Y
  152.             0.01300, //  3Y
  153.             0.01495, //  4Y
  154.             0.01651, //  5Y
  155.             0.01787, //  6Y
  156.             0.01904, //  7Y
  157.             0.02005, //  8Y
  158.             0.02090, //  9Y
  159.             0.02166, // 10Y
  160.             0.02231, // 11Y
  161.             0.02289, // 12Y
  162.             0.02414, // 15Y
  163.             0.02570, // 20Y
  164.             0.02594, // 25Y
  165.             0.02627, // 30Y
  166.             0.02648, // 40Y
  167.             0.02632  // 50Y
  168.         };

  169.         String strFundingFixFloatMeasure = "SwapRate";

  170.         int[] aiGovvieCurveTreasuryEffectiveDate = new int[] {
  171.             iSpotDate,
  172.             iSpotDate,
  173.             iSpotDate,
  174.             iSpotDate,
  175.             iSpotDate,
  176.             iSpotDate,
  177.             iSpotDate
  178.         };

  179.         int[] aiGovvieCurveTreasuryMaturityDate = new int[] {
  180.             new JulianDate (iSpotDate).addTenor ("1Y").julian(),
  181.             new JulianDate (iSpotDate).addTenor ("2Y").julian(),
  182.             new JulianDate (iSpotDate).addTenor ("3Y").julian(),
  183.             new JulianDate (iSpotDate).addTenor ("5Y").julian(),
  184.             new JulianDate (iSpotDate).addTenor ("7Y").julian(),
  185.             new JulianDate (iSpotDate).addTenor ("10Y").julian(),
  186.             new JulianDate (iSpotDate).addTenor ("30Y").julian()
  187.         };

  188.         double[] adblGovvieCurveTreasuryCoupon = new double[] {
  189.             0.0100,
  190.             0.0100,
  191.             0.0125,
  192.             0.0150,
  193.             0.0200,
  194.             0.0225,
  195.             0.0300
  196.         };

  197.         double[] adblGovvieCurveTreasuryYield = new double[] {
  198.             0.00692,
  199.             0.00945,
  200.             0.01257,
  201.             0.01678,
  202.             0.02025,
  203.             0.02235,
  204.             0.02972
  205.         };

  206.         String strGovvieCurveTreasuryMeasure = "Yield";

  207.         String[] astrCreditCurveCDSTenor = new String[] {
  208.             "06M",
  209.             "01Y",
  210.             "02Y",
  211.             "03Y",
  212.             "04Y",
  213.             "05Y",
  214.             "07Y",
  215.             "10Y"
  216.         };

  217.         double[] adblCreditCurveCDSCoupon = new double[] {
  218.              60.,   //  6M
  219.              68.,   //  1Y
  220.              88.,   //  2Y
  221.             102.,   //  3Y
  222.             121.,   //  4Y
  223.             138.,   //  5Y
  224.             168.,   //  7Y
  225.             188.    // 10Y
  226.         };

  227.         String strIssuerName = "AEG";
  228.         double dblBondCoupon = 0.0560;
  229.         int iBondCouponFrequency = 2;
  230.         String strBondCouponDayCount = "30/360";
  231.         String strBondCouponCurrency = "USD";
  232.         String strBondMarketQuoteName = "Price";
  233.         double dblBondMarketQuote = 1.17460;
  234.         String strGovvieCode = "UST";

  235.         int iBondEffectiveDate = DateUtil.CreateFromYMD (
  236.             2011,
  237.             DateUtil.JULY,
  238.             21
  239.         ).julian();

  240.         int iBondMaturityDate = DateUtil.CreateFromYMD (
  241.             2041,
  242.             DateUtil.JULY,
  243.             15
  244.         ).julian();

  245.         Map<String, Double> mapBondMetrics = FixedBondAPI.ValuationMetrics (
  246.             strIssuerName,
  247.             iBondEffectiveDate,
  248.             iBondMaturityDate,
  249.             dblBondCoupon,
  250.             iBondCouponFrequency,
  251.             strBondCouponDayCount,
  252.             strBondCouponCurrency,
  253.             iSpotDate,
  254.             astrFundingCurveDepositTenor,
  255.             adblFundingCurveDepositQuote,
  256.             strFundingCurveDepositMeasure,
  257.             adblFundingCurveFuturesQuote,
  258.             strFundingCurveFuturesMeasure,
  259.             astrFundingCurveFixFloatTenor,
  260.             adblFundingCurveFixFloatQuote,
  261.             strFundingFixFloatMeasure,
  262.             strGovvieCode,
  263.             aiGovvieCurveTreasuryEffectiveDate,
  264.             aiGovvieCurveTreasuryMaturityDate,
  265.             adblGovvieCurveTreasuryCoupon,
  266.             adblGovvieCurveTreasuryYield,
  267.             strGovvieCurveTreasuryMeasure,
  268.             strIssuerName,
  269.             astrCreditCurveCDSTenor,
  270.             adblCreditCurveCDSCoupon,
  271.             adblCreditCurveCDSCoupon,
  272.             "FairPremium",
  273.             strBondMarketQuoteName,
  274.             dblBondMarketQuote
  275.         );

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

  278.         EnvManager.TerminateEnv();
  279.     }
  280. }