CTSettingsContainer20.java

  1. package org.drip.simm.commodity;

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

  75. /**
  76.  * <i>CTSettingsContainer20</i> holds the ISDA SIMM 2.0 Commodity Buckets and their Correlations. The
  77.  * References are:
  78.  *
  79.  * <br><br>
  80.  *  <ul>
  81.  *      <li>
  82.  *          Andersen, L. B. G., M. Pykhtin, and A. Sokol (2017): Credit Exposure in the Presence of Initial
  83.  *              Margin https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2806156 <b>eSSRN</b>
  84.  *      </li>
  85.  *      <li>
  86.  *          Albanese, C., S. Caenazzo, and O. Frankel (2017): Regression Sensitivities for Initial Margin
  87.  *              Calculations https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2763488 <b>eSSRN</b>
  88.  *      </li>
  89.  *      <li>
  90.  *          Anfuso, F., D. Aziz, P. Giltinan, and K. Loukopoulus (2017): A Sound Modeling and Back-testing
  91.  *              Framework for Forecasting Initial Margin Requirements
  92.  *                  https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2716279 <b>eSSRN</b>
  93.  *      </li>
  94.  *      <li>
  95.  *          Caspers, P., P. Giltinan, R. Lichters, and N. Nowaczyk (2017): Forecasting Initial Margin
  96.  *              Requirements - A Model Evaluation https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2911167
  97.  *                  <b>eSSRN</b>
  98.  *      </li>
  99.  *      <li>
  100.  *          International Swaps and Derivatives Association (2017): SIMM v2.0 Methodology
  101.  *              https://www.isda.org/a/oFiDE/isda-simm-v2.pdf
  102.  *      </li>
  103.  *  </ul>
  104.  *
  105.  * <br><br>
  106.  *  <ul>
  107.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/PortfolioCore.md">Portfolio Core Module</a></li>
  108.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/MarginAnalyticsLibrary.md">Initial and Variation Margin Analytics</a></li>
  109.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/simm/README.md">Initial Margin Analytics based on ISDA SIMM and its Variants</a></li>
  110.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/simm/commodity/README.md">Commodity Risk Factor Calibration Settings</a></li>
  111.  *  </ul>
  112.  * <br><br>
  113.  *
  114.  * @author Lakshmi Krishnamurthy
  115.  */

  116. public class CTSettingsContainer20
  117. {
  118.     private static org.drip.measure.stochastic.LabelCorrelation s_CrossBucketCorrelation = null;

  119.     private static final java.util.Map<java.lang.Integer, org.drip.simm.commodity.CTBucket> s_BucketMap =
  120.         new java.util.TreeMap<java.lang.Integer, org.drip.simm.commodity.CTBucket>();

  121.     private static final boolean SetUpCrossBucketCorrelation()
  122.     {
  123.         java.util.List<java.lang.String> bucketList = new java.util.ArrayList<java.lang.String>();

  124.         bucketList.add ("1");

  125.         bucketList.add ("2");

  126.         bucketList.add ("3");

  127.         bucketList.add ("4");

  128.         bucketList.add ("5");

  129.         bucketList.add ("6");

  130.         bucketList.add ("7");

  131.         bucketList.add ("8");

  132.         bucketList.add ("9");

  133.         bucketList.add ("10");

  134.         bucketList.add ("11");

  135.         bucketList.add ("12");

  136.         bucketList.add ("13");

  137.         bucketList.add ("14");

  138.         bucketList.add ("15");

  139.         bucketList.add ("16");

  140.         bucketList.add ("17");

  141.         try
  142.         {
  143.             s_CrossBucketCorrelation = new org.drip.measure.stochastic.LabelCorrelation (
  144.                 bucketList,
  145.                 new double[][]
  146.                 {
  147.                     { 1.00, 0.18, 0.15, 0.20, 0.25, 0.08, 0.19, 0.01, 0.27, 0.00, 0.15, 0.02, 0.06, 0.07,-0.04, 0.00, 0.06}, // #01
  148.                     { 0.18, 1.00, 0.89, 0.94, 0.93, 0.32, 0.22, 0.27, 0.24, 0.09, 0.45, 0.21, 0.32, 0.28, 0.17, 0.00, 0.37}, // #02
  149.                     { 0.15, 0.89, 1.00, 0.87, 0.88, 0.25, 0.16, 0.19, 0.12, 0.10, 0.26,-0.01, 0.19, 0.17, 0.10, 0.00, 0.27}, // #03
  150.                     { 0.20, 0.92, 0.87, 1.00, 0.92, 0.29, 0.22, 0.26, 0.19, 0.00, 0.32, 0.05, 0.20, 0.22, 0.13, 0.00, 0.28}, // #04
  151.                     { 0.25, 0.93, 0.88, 0.92, 1.00, 0.30, 0.26, 0.22, 0.28, 0.12, 0.42, 0.23, 0.28, 0.29, 0.17, 0.00, 0.34}, // #05
  152.                     { 0.08, 0.32, 0.25, 0.29, 0.30, 1.00, 0.13, 0.57, 0.05, 0.14, 0.15,-0.02, 0.13, 0.17, 0.01, 0.00, 0.26}, // #06
  153.                     { 0.19, 0.22, 0.16, 0.22, 0.26, 0.13, 1.00, 0.07, 0.80, 0.19, 0.16, 0.05, 0.17, 0.18, 0.00, 0.00, 0.18}, // #07
  154.                     { 0.01, 0.27, 0.19, 0.26, 0.22, 0.57, 0.07, 1.00, 0.13, 0.06, 0.16, 0.03, 0.10, 0.12, 0.06, 0.00, 0.23}, // #08
  155.                     { 0.27, 0.24, 0.12, 0.19, 0.28, 0.05, 0.80, 0.13, 1.00, 0.15, 0.17, 0.05, 0.15, 0.13,-0.03, 0.00, 0.13}, // #09
  156.                     { 0.00, 0.09, 0.10, 0.00, 0.12, 0.14, 0.19, 0.06, 0.15, 1.00, 0.07, 0.07, 0.17, 0.10, 0.02, 0.00, 0.11}, // #10
  157.                     { 0.15, 0.45, 0.26, 0.32, 0.42, 0.15, 0.16, 0.16, 0.17, 0.07, 1.00, 0.34, 0.20, 0.21, 0.16, 0.00, 0.27}, // #11
  158.                     { 0.02, 0.21,-0.01, 0.05, 0.23,-0.02, 0.05, 0.03, 0.05, 0.07, 0.34, 1.00, 0.17, 0.26, 0.11, 0.00, 0.14}, // #12
  159.                     { 0.06, 0.32, 0.19, 0.20, 0.28, 0.13, 0.17, 0.10, 0.15, 0.17, 0.20, 0.17, 1.00, 0.35, 0.09, 0.00, 0.22}, // #13
  160.                     { 0.07, 0.28, 0.17, 0.22, 0.29, 0.17, 0.18, 0.12, 0.13, 0.10, 0.21, 0.26, 0.35, 1.00, 0.06, 0.00, 0.20}, // #14
  161.                     {-0.04, 0.17, 0.10, 0.13, 0.17, 0.01, 0.00, 0.06,-0.03, 0.02, 0.16, 0.11, 0.09, 0.06, 1.00, 0.00, 0.16}, // #15
  162.                     { 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 1.00, 0.00}, // #16
  163.                     { 0.06, 0.27, 0.27, 0.28, 0.34, 0.26, 0.18, 0.23, 0.13, 0.11, 0.27, 0.14, 0.22, 0.20, 0.16, 0.00, 1.00}  // #17
  164.                 }
  165.             );

  166.             return true;
  167.         }
  168.         catch (java.lang.Exception e)
  169.         {
  170.             e.printStackTrace();
  171.         }

  172.         return false;
  173.     }

  174.     /**
  175.      * Initialize the Commodity Settings Container
  176.      *
  177.      * @return TRUE - Commodity Settings Container successfully initialized
  178.      */

  179.     public static final boolean Init()
  180.     {
  181.         try
  182.         {
  183.             s_BucketMap.put (
  184.                 1,
  185.                 new org.drip.simm.commodity.CTBucket (
  186.                     1,
  187.                     "Coal",
  188.                     19.,
  189.                     0.30
  190.                 )
  191.             );

  192.             s_BucketMap.put (
  193.                 2,
  194.                 new org.drip.simm.commodity.CTBucket (
  195.                     2,
  196.                     "Crude",
  197.                     20.,
  198.                     0.97
  199.                 )
  200.             );

  201.             s_BucketMap.put (
  202.                 3,
  203.                 new org.drip.simm.commodity.CTBucket (
  204.                     3,
  205.                     "Light Ends",
  206.                     17.,
  207.                     0.93
  208.                 )
  209.             );

  210.             s_BucketMap.put (
  211.                 4,
  212.                 new org.drip.simm.commodity.CTBucket (
  213.                     4,
  214.                     "Middle Distillates",
  215.                     18.,
  216.                     0.98
  217.                 )
  218.             );

  219.             s_BucketMap.put (
  220.                 5,
  221.                 new org.drip.simm.commodity.CTBucket (
  222.                     5,
  223.                     "Heavy Distillates",
  224.                     24.,
  225.                     0.99
  226.                 )
  227.             );

  228.             s_BucketMap.put (
  229.                 6,
  230.                 new org.drip.simm.commodity.CTBucket (
  231.                     6,
  232.                     "North American Natural Gas",
  233.                     20.,
  234.                     0.92
  235.                 )
  236.             );

  237.             s_BucketMap.put (
  238.                 7,
  239.                 new org.drip.simm.commodity.CTBucket (
  240.                     7,
  241.                     "European Natural Gas",
  242.                     24.,
  243.                     0.999
  244.                 )
  245.             );

  246.             s_BucketMap.put (
  247.                 8,
  248.                 new org.drip.simm.commodity.CTBucket (
  249.                     8,
  250.                     "North American Power",
  251.                     41.,
  252.                     0.58
  253.                 )
  254.             );

  255.             s_BucketMap.put (
  256.                 9,
  257.                 new org.drip.simm.commodity.CTBucket (
  258.                     9,
  259.                     "European Power",
  260.                     25.,
  261.                     0.999
  262.                 )
  263.             );

  264.             s_BucketMap.put (
  265.                 10,
  266.                 new org.drip.simm.commodity.CTBucket (
  267.                     10,
  268.                     "Freight",
  269.                     91.,
  270.                     0.10
  271.                 )
  272.             );

  273.             s_BucketMap.put (
  274.                 11,
  275.                 new org.drip.simm.commodity.CTBucket (
  276.                     11,
  277.                     "Base Metals",
  278.                     20.,
  279.                     0.55
  280.                 )
  281.             );

  282.             s_BucketMap.put (
  283.                 12,
  284.                 new org.drip.simm.commodity.CTBucket (
  285.                     12,
  286.                     "Precious Metals",
  287.                     19.,
  288.                     0.64
  289.                 )
  290.             );

  291.             s_BucketMap.put (
  292.                 13,
  293.                 new org.drip.simm.commodity.CTBucket (
  294.                     13,
  295.                     "Grains",
  296.                     16.,
  297.                     0.71
  298.                 )
  299.             );

  300.             s_BucketMap.put (
  301.                 14,
  302.                 new org.drip.simm.commodity.CTBucket (
  303.                     14,
  304.                     "Softs",
  305.                     15.,
  306.                     0.22
  307.                 )
  308.             );

  309.             s_BucketMap.put (
  310.                 15,
  311.                 new org.drip.simm.commodity.CTBucket (
  312.                     15,
  313.                     "Livestock",
  314.                     10.,
  315.                     0.29
  316.                 )
  317.             );

  318.             s_BucketMap.put (
  319.                 16,
  320.                 new org.drip.simm.commodity.CTBucket (
  321.                     16,
  322.                     "Other",
  323.                     91.,
  324.                     0.00
  325.                 )
  326.             );

  327.             s_BucketMap.put (
  328.                 17,
  329.                 new org.drip.simm.commodity.CTBucket (
  330.                     17,
  331.                     "Indexes",
  332.                     17.,
  333.                     0.21
  334.                 )
  335.             );
  336.         }
  337.         catch (java.lang.Exception e)
  338.         {
  339.             e.printStackTrace();

  340.             return false;
  341.         }

  342.         return SetUpCrossBucketCorrelation();
  343.     }

  344.     /**
  345.      * Retrieve the Set of Bucket Indexes available
  346.      *
  347.      * @return The Set of Bucket Indexes available
  348.      */

  349.     public static final java.util.Set<java.lang.Integer> BucketSet()
  350.     {
  351.         return s_BucketMap.keySet();
  352.     }

  353.     /**
  354.      * Indicate if the Bucket denoted by the Number is available
  355.      *
  356.      * @param bucketNumber The Bucket Number
  357.      *
  358.      * @return TRUE - The Bucket denoted by the Number is available
  359.      */

  360.     public static final boolean ContainsBucket (
  361.         final int bucketNumber)
  362.     {
  363.         return s_BucketMap.containsKey (bucketNumber);
  364.     }

  365.     /**
  366.      * Retrieve the Bucket denoted by the Number
  367.      *
  368.      * @param bucketNumber The Bucket Number
  369.      *
  370.      * @return The Bucket denoted by the Number
  371.      */

  372.     public static final org.drip.simm.commodity.CTBucket Bucket (
  373.         final int bucketNumber)
  374.     {
  375.         return ContainsBucket (bucketNumber) ? s_BucketMap.get (bucketNumber) : null;
  376.     }

  377.     /**
  378.      * Retrieve the Cross Bucket Correlation
  379.      *
  380.      * @return The Cross Bucket Correlation
  381.      */

  382.     public static final org.drip.measure.stochastic.LabelCorrelation CrossBucketCorrelation()
  383.     {
  384.         return s_CrossBucketCorrelation;
  385.     }

  386.     /**
  387.      * Retrieve the Bucket Map
  388.      *
  389.      * @return The Bucket Map
  390.      */

  391.     public static final java.util.Map<java.lang.Integer, org.drip.simm.commodity.CTBucket> BucketMap()
  392.     {
  393.         return s_BucketMap;
  394.     }

  395.     /**
  396.      * Retrieve the Cross Bucket Co-variance Matrix
  397.      *
  398.      * @return The Cross Bucket Co-variance Matrix
  399.      */

  400.     public static final org.drip.simm.foundation.RiskGroupPrincipalCovariance CrossBucketPrincipalCovariance()
  401.     {
  402.         return org.drip.simm.foundation.RiskGroupPrincipalCovariance.Standard (
  403.             s_CrossBucketCorrelation.matrix(),
  404.             1.
  405.         );
  406.     }
  407. }