RiskFactorAggregateCR.java

  1. package org.drip.simm.margin;

  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>RiskFactorAggregateCR</i> holds the Sensitivity Margin Aggregates for each of the CR Risk Factors -
  77.  * both Qualifying and Non-qualifying. The 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/margin/README.md">ISDA SIMM Risk Factor Margin Metrics</a></li>
  111.  *  </ul>
  112.  * <br><br>
  113.  *
  114.  * @author Lakshmi Krishnamurthy
  115.  */

  116. public class RiskFactorAggregateCR
  117. {
  118.     private double _concentrationRiskFactor = java.lang.Double.NaN;
  119.     private java.util.Map<java.lang.String, java.util.Map<java.lang.String, java.lang.Double>>
  120.         _componentSensitivityMarginMap = null;

  121.     /**
  122.      * RiskFactorAggregateCR Constructor
  123.      *
  124.      * @param componentSensitivityMarginMap The Component Sensitivity Margin Map
  125.      * @param concentrationRiskFactor The Bucket Concentration Risk Factor
  126.      *
  127.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  128.      */

  129.     public RiskFactorAggregateCR (
  130.         final java.util.Map<java.lang.String, java.util.Map<java.lang.String, java.lang.Double>>
  131.             componentSensitivityMarginMap,
  132.         final double concentrationRiskFactor)
  133.         throws java.lang.Exception
  134.     {
  135.         if (null == (_componentSensitivityMarginMap = componentSensitivityMarginMap) ||
  136.             0 == _componentSensitivityMarginMap.size() ||
  137.             !org.drip.numerical.common.NumberUtil.IsValid (_concentrationRiskFactor = concentrationRiskFactor))
  138.          {
  139.              throw new java.lang.Exception ("RiskFactorAggregateCR Constructor => Invalid Inputs");
  140.          }
  141.     }

  142.     /**
  143.      * Retrieve the Bucket Concentration Risk Factor
  144.      *
  145.      * @return The Bucket Concentration Risk Factor
  146.      */

  147.     public double concentrationRiskFactor()
  148.     {
  149.         return _concentrationRiskFactor;
  150.     }

  151.     /**
  152.      * Retrieve the Component Tenor Sensitivity Margin Map
  153.      *
  154.      * @return The Component Tenor Sensitivity Margin Map
  155.      */

  156.     public java.util.Map<java.lang.String, java.util.Map<java.lang.String, java.lang.Double>>
  157.         componentSensitivityMarginMap()
  158.     {
  159.         return _componentSensitivityMarginMap;
  160.     }

  161.     /**
  162.      * Retrieve the Component Tenor Sensitivity Margin
  163.      *
  164.      * @param componentName The Component Name
  165.      *
  166.      * @return The Component Tenor Sensitivity Margin
  167.      */

  168.     public java.util.Map<java.lang.String, java.lang.Double> componentSensitivityMargin (
  169.         final java.lang.String componentName)
  170.     {
  171.         return null != componentName || _componentSensitivityMarginMap.containsKey (componentName) ?
  172.             _componentSensitivityMarginMap.get (componentName) : null;
  173.     }

  174.     /**
  175.      * Compute the Cumulative Sensitivity Margin for the specified Component
  176.      *
  177.      * @param componentName The Component Name
  178.      *
  179.      * @return The Cumulative Sensitivity Margin for the specified Component
  180.      *
  181.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  182.      */

  183.     public double cumulativeComponentSensitivityMargin (
  184.         final java.lang.String componentName)
  185.         throws java.lang.Exception
  186.     {
  187.         if (null == componentName || !_componentSensitivityMarginMap.containsKey (componentName))
  188.         {
  189.             throw new java.lang.Exception
  190.                 ("RiskFactorAggregateCR::cumulativeComponentSensitivityMargin => Invalid Inputs");
  191.         }

  192.         double cumulativeComponentSensitivityMargin = 0.;

  193.         java.util.Map<java.lang.String, java.lang.Double> componentTenorSensitivityMargin =
  194.             _componentSensitivityMarginMap.get (componentName);

  195.         for (java.util.Map.Entry<java.lang.String, java.lang.Double> componentTenorSensitivityMarginEntry :
  196.             componentTenorSensitivityMargin.entrySet())
  197.         {
  198.             cumulativeComponentSensitivityMargin = cumulativeComponentSensitivityMargin +
  199.                 componentTenorSensitivityMarginEntry.getValue();
  200.         }

  201.         return cumulativeComponentSensitivityMargin;
  202.     }

  203.     /**
  204.      * Compute the Cumulative Sensitivity Margin
  205.      *
  206.      * @return The Cumulative Sensitivity Margin
  207.      */

  208.     public double cumulativeSensitivityMargin()
  209.     {
  210.         double cumulativeSensitivityMargin = 0.;

  211.         for (java.util.Map.Entry<java.lang.String, java.util.Map<java.lang.String, java.lang.Double>>
  212.             componentSensitivityMarginMapEntry : _componentSensitivityMarginMap.entrySet())
  213.         {
  214.             for (java.util.Map.Entry<java.lang.String, java.lang.Double> componentTenorSensitivityMapEntry :
  215.                 componentSensitivityMarginMapEntry.getValue().entrySet())
  216.             {
  217.                 cumulativeSensitivityMargin = cumulativeSensitivityMargin +
  218.                     componentTenorSensitivityMapEntry.getValue();
  219.             }
  220.         }

  221.         return cumulativeSensitivityMargin;
  222.     }

  223.     /**
  224.      * Compute the Component Pair Linear Margin Covariance
  225.      *
  226.      * @param bucketSensitivitySettingsCR The CR Bucket Sensitivity Settings
  227.      * @param componentName1 Component #1 Name
  228.      * @param componentName2 Component #2 Name
  229.      *
  230.      * @return The Component Pair Linear Margin Covariance
  231.      *
  232.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  233.      */

  234.     public double componentLinearMarginCovariance (
  235.         final org.drip.simm.parameters.BucketSensitivitySettingsCR bucketSensitivitySettingsCR,
  236.         final java.lang.String componentName1,
  237.         final java.lang.String componentName2)
  238.         throws java.lang.Exception
  239.     {
  240.         if (null == bucketSensitivitySettingsCR ||
  241.             !_componentSensitivityMarginMap.containsKey (componentName1) ||
  242.             !_componentSensitivityMarginMap.containsKey (componentName2))
  243.         {
  244.             throw new java.lang.Exception
  245.                 ("RiskFactorAggregateCR::componentLinearMarginCovariance => Invalid Inputs");
  246.         }

  247.         double crossTenorCorrelation = bucketSensitivitySettingsCR.extraFamilyCrossTenorCorrelation();

  248.         double componentLinearMarginCovariance = 0.;

  249.         java.util.Map<java.lang.String, java.lang.Double> componentTenorSensitivityMargin1 =
  250.             _componentSensitivityMarginMap.get (componentName1);

  251.         java.util.Map<java.lang.String, java.lang.Double> componentTenorSensitivityMargin2 =
  252.             _componentSensitivityMarginMap.get (componentName2);

  253.         for (java.util.Map.Entry<java.lang.String, java.lang.Double> componentTenorSensitivityMargin1Entry :
  254.             componentTenorSensitivityMargin1.entrySet())
  255.         {
  256.             java.lang.String component1Tenor = componentTenorSensitivityMargin1Entry.getKey();

  257.             double component1SensitivityMargin = componentTenorSensitivityMargin1Entry.getValue();

  258.             for (java.util.Map.Entry<java.lang.String, java.lang.Double>
  259.                 componentTenorSensitivityMargin2Entry : componentTenorSensitivityMargin2.entrySet())
  260.             {
  261.                 componentLinearMarginCovariance = componentLinearMarginCovariance +
  262.                     component1SensitivityMargin * componentTenorSensitivityMargin2Entry.getValue() * (
  263.                         component1Tenor.equalsIgnoreCase (componentTenorSensitivityMargin2Entry.getKey()) ?
  264.                             1. : crossTenorCorrelation
  265.                     );
  266.             }
  267.         }

  268.         return componentLinearMarginCovariance;
  269.     }

  270.     /**
  271.      * Compute the Component Pair Curvature Margin Covariance
  272.      *
  273.      * @param bucketSensitivitySettingsCR The CR Bucket Sensitivity Settings
  274.      * @param componentName1 Component #1 Name
  275.      * @param componentName2 Component #2 Name
  276.      *
  277.      * @return The Component Pair Curvature Margin Covariance
  278.      *
  279.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  280.      */

  281.     public double componentCurvatureMarginCovariance (
  282.         final org.drip.simm.parameters.BucketSensitivitySettingsCR bucketSensitivitySettingsCR,
  283.         final java.lang.String componentName1,
  284.         final java.lang.String componentName2)
  285.         throws java.lang.Exception
  286.     {
  287.         if (null == bucketSensitivitySettingsCR ||
  288.             !_componentSensitivityMarginMap.containsKey (componentName1) ||
  289.             !_componentSensitivityMarginMap.containsKey (componentName2))
  290.         {
  291.             throw new java.lang.Exception
  292.                 ("RiskFactorAggregateCR::componentCurvatureMarginCovariance => Invalid Inputs");
  293.         }

  294.         double crossTenorCorrelation = bucketSensitivitySettingsCR.extraFamilyCrossTenorCorrelation();

  295.         double componentCurvatureMarginCovariance = 0.;

  296.         java.util.Map<java.lang.String, java.lang.Double> componentTenorSensitivityMargin1 =
  297.             _componentSensitivityMarginMap.get (componentName1);

  298.         java.util.Map<java.lang.String, java.lang.Double> componentTenorSensitivityMargin2 =
  299.             _componentSensitivityMarginMap.get (componentName2);

  300.         for (java.util.Map.Entry<java.lang.String, java.lang.Double> componentTenorSensitivityMargin1Entry :
  301.             componentTenorSensitivityMargin1.entrySet())
  302.         {
  303.             java.lang.String component1Tenor = componentTenorSensitivityMargin1Entry.getKey();

  304.             double component1SensitivityMargin = componentTenorSensitivityMargin1Entry.getValue();

  305.             for (java.util.Map.Entry<java.lang.String, java.lang.Double>
  306.                 componentTenorSensitivityMargin2Entry : componentTenorSensitivityMargin2.entrySet())
  307.             {
  308.                 componentCurvatureMarginCovariance = componentCurvatureMarginCovariance +
  309.                     component1SensitivityMargin * componentTenorSensitivityMargin2Entry.getValue() * (
  310.                         component1Tenor.equalsIgnoreCase (componentTenorSensitivityMargin2Entry.getKey()) ?
  311.                             1. : crossTenorCorrelation * crossTenorCorrelation
  312.                     );
  313.             }
  314.         }

  315.         return componentCurvatureMarginCovariance;
  316.     }

  317.     /**
  318.      * Compute the Linear Margin Co-variance
  319.      *
  320.      * @param bucketSensitivitySettingsCR The CR Bucket Curve Tenor Sensitivity Settings
  321.      *
  322.      * @return The Linear Margin Co-variance
  323.      */

  324.     public org.drip.simm.margin.SensitivityAggregateCR linearMargin (
  325.         final org.drip.simm.parameters.BucketSensitivitySettingsCR bucketSensitivitySettingsCR)
  326.     {
  327.         java.util.Set<java.lang.String> componentNameSet = _componentSensitivityMarginMap.keySet();

  328.         java.util.Map<java.lang.String, java.lang.Double> componentMarginCovarianceMap = new
  329.             org.drip.analytics.support.CaseInsensitiveHashMap<java.lang.Double>();

  330.         double cumulativeMarginSensitivity = 0.;

  331.         try
  332.         {
  333.             for (java.lang.String componentName1 : componentNameSet)
  334.             {
  335.                 for (java.lang.String componentName2 : componentNameSet)
  336.                 {
  337.                     double componentLinearMarginCovariance = componentLinearMarginCovariance (
  338.                         bucketSensitivitySettingsCR,
  339.                         componentName1,
  340.                         componentName2
  341.                     );

  342.                     cumulativeMarginSensitivity = cumulativeMarginSensitivity +
  343.                         componentLinearMarginCovariance;

  344.                     componentMarginCovarianceMap.put (
  345.                         componentName1 + "_" + componentName2,
  346.                         componentLinearMarginCovariance
  347.                     );
  348.                 }
  349.             }

  350.             return new SensitivityAggregateCR (
  351.                 componentMarginCovarianceMap,
  352.                 cumulativeMarginSensitivity
  353.             );
  354.         }
  355.         catch (java.lang.Exception e)
  356.         {
  357.             e.printStackTrace();
  358.         }

  359.         return null;
  360.     }

  361.     /**
  362.      * Compute the Curvature Margin Co-variance
  363.      *
  364.      * @param bucketSensitivitySettingsCR The CR Bucket Curve Tenor Sensitivity Settings
  365.      *
  366.      * @return The Curvature Margin Co-variance
  367.      */

  368.     public org.drip.simm.margin.SensitivityAggregateCR curvatureMargin (
  369.         final org.drip.simm.parameters.BucketSensitivitySettingsCR bucketSensitivitySettingsCR)
  370.     {
  371.         java.util.Set<java.lang.String> componentNameSet = _componentSensitivityMarginMap.keySet();

  372.         java.util.Map<java.lang.String, java.lang.Double> componentMarginCovarianceMap = new
  373.             org.drip.analytics.support.CaseInsensitiveHashMap<java.lang.Double>();

  374.         double cumulativeMarginSensitivity = 0.;

  375.         try
  376.         {
  377.             for (java.lang.String componentName1 : componentNameSet)
  378.             {
  379.                 for (java.lang.String componentName2 : componentNameSet)
  380.                 {
  381.                     double componentCurvatureMarginCovariance = componentCurvatureMarginCovariance (
  382.                         bucketSensitivitySettingsCR,
  383.                         componentName1,
  384.                         componentName2
  385.                     );

  386.                     cumulativeMarginSensitivity = cumulativeMarginSensitivity +
  387.                         componentCurvatureMarginCovariance;

  388.                     componentMarginCovarianceMap.put (
  389.                         componentName1 + "_" + componentName2,
  390.                         componentCurvatureMarginCovariance
  391.                     );
  392.                 }
  393.             }

  394.             return new SensitivityAggregateCR (
  395.                 componentMarginCovarianceMap,
  396.                 cumulativeMarginSensitivity
  397.             );
  398.         }
  399.         catch (java.lang.Exception e)
  400.         {
  401.             e.printStackTrace();
  402.         }

  403.         return null;
  404.     }
  405. }