GovvieBondDefinitions.java

  1. package org.drip.sample.treasury;

  2. import org.drip.market.issue.*;
  3. import org.drip.service.env.EnvManager;

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

  46. /**
  47.  * GovvieBondDefinitions contains the Details of the Standard Built-in Govvie Bonds.
  48.  *
  49.  * @author Lakshmi Krishnamurthy
  50.  */

  51. public class GovvieBondDefinitions {

  52.     private static final void DisplayDetails (
  53.         final String strTreasuryCode)
  54.     {
  55.         TreasurySetting ts = TreasurySettingContainer.TreasurySetting (strTreasuryCode);

  56.         System.out.println (
  57.             "\t| " + ts.code() +
  58.             " | " + ts.currency() +
  59.             " | " + ts.frequency() +
  60.             " | " + ts.dayCount() +
  61.             " | " + ts.calendar() + " ||"
  62.         );
  63.     }

  64.     private static final void DefaultTreasuryCode (
  65.         final String strCurrency)
  66.     {
  67.         System.out.println ("\t| " + strCurrency + " => " + TreasurySettingContainer.CurrencyBenchmarkCode (strCurrency) + " ||");
  68.     }

  69.     public static final void main (
  70.         final String[] args)
  71.         throws Exception
  72.     {
  73.         EnvManager.InitEnv ("");

  74.         System.out.println ("\n\t|-------------------------------------||");

  75.         System.out.println ("\t| BUILT-IN GOVVIE BOND STATIC DETAILS ||");

  76.         System.out.println ("\t| -------- ------ ---- ------ ------- ||");

  77.         System.out.println ("\t|                                     ||");

  78.         System.out.println ("\t|      L -> R                         ||");

  79.         System.out.println ("\t|            Treasury Code            ||");

  80.         System.out.println ("\t|            Currency                 ||");

  81.         System.out.println ("\t|            Frequency                ||");

  82.         System.out.println ("\t|            Day Count                ||");

  83.         System.out.println ("\t|            Calendar                 ||");

  84.         System.out.println ("\t|                                     ||");

  85.         System.out.println ("\t|-------------------------------------||");

  86.         DisplayDetails ("AGB");

  87.         DisplayDetails ("BTPS");

  88.         DisplayDetails ("CAN");

  89.         DisplayDetails ("DBR");

  90.         DisplayDetails ("DGB");

  91.         DisplayDetails ("FRTR");

  92.         DisplayDetails ("GGB");

  93.         DisplayDetails ("GILT");

  94.         DisplayDetails ("GSWISS");

  95.         DisplayDetails ("JGB");

  96.         DisplayDetails ("MBONO");

  97.         DisplayDetails ("NGB");

  98.         DisplayDetails ("NZGB");

  99.         DisplayDetails ("SGB");

  100.         DisplayDetails ("SPGB");

  101.         DisplayDetails ("UST");

  102.         System.out.println ("\t|-------------------------------------||");

  103.         System.out.println ("\n\n\t|------------||");

  104.         System.out.println ("\t|            ||");

  105.         System.out.println ("\t|   GOVVIE   ||");

  106.         System.out.println ("\t|    BOND    ||");

  107.         System.out.println ("\t|  CURRENCY  ||");

  108.         System.out.println ("\t|  DEFAULTS  ||");

  109.         System.out.println ("\t|            ||");

  110.         System.out.println ("\t|------------||");

  111.         DefaultTreasuryCode ("AUD");

  112.         DefaultTreasuryCode ("CAD");

  113.         DefaultTreasuryCode ("CHF");

  114.         DefaultTreasuryCode ("EUR");

  115.         DefaultTreasuryCode ("GBP");

  116.         DefaultTreasuryCode ("JPY");

  117.         DefaultTreasuryCode ("MXN");

  118.         DefaultTreasuryCode ("NOK");

  119.         DefaultTreasuryCode ("SEK");

  120.         DefaultTreasuryCode ("USD");

  121.         DefaultTreasuryCode ("AUD");

  122.         System.out.println ("\t|------------||");
  123.     }
  124. }