FSPnLDecomposition.java

  1. package org.drip.capital.simulation;

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

  74. /**
  75.  * <i>FSPnLDecomposition</i> holds the Per FS PnL Decomposition. The References are:
  76.  *
  77.  * <br><br>
  78.  *  <ul>
  79.  *      <li>
  80.  *          Bank for International Supervision(2005): Stress Testing at Major Financial Institutions: Survey
  81.  *              Results and Practice https://www.bis.org/publ/cgfs24.htm
  82.  *      </li>
  83.  *      <li>
  84.  *          Glasserman, P. (2004): <i>Monte Carlo Methods in Financial Engineering</i> <b>Springer</b>
  85.  *      </li>
  86.  *      <li>
  87.  *          Kupiec, P. H. (2000): Stress Tests and Risk Capital <i>Risk</i> <b>2 (4)</b> 27-39
  88.  *      </li>
  89.  *  </ul>
  90.  *
  91.  *  <br><br>
  92.  *  <ul>
  93.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/PortfolioCore.md">Portfolio Core Module</a></li>
  94.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/CapitalAnalyticsLibrary.md">Capital Analytics</a></li>
  95.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/capital/README.md">Basel Market Risk and Operational Capital</a></li>
  96.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/capital/simulation/README.md">Economic Risk Capital Simulation Ensemble</a></li>
  97.  *  </ul>
  98.  *
  99.  * @author Lakshmi Krishnamurthy
  100.  */

  101. public class FSPnLDecomposition
  102. {
  103.     private java.util.Map<java.lang.String, org.drip.capital.stress.PnLSeries> _fsMap = null;

  104.     /**
  105.      * Construct a Standard Instance of FSPnLDecomposition
  106.      *
  107.      * @param notional Notional the PnL is based upon
  108.      *
  109.      * @return Standard Instance of FSPnLDecomposition
  110.      */

  111.     public static final FSPnLDecomposition Standard (
  112.         final double notional)
  113.     {
  114.         if (!org.drip.numerical.common.NumberUtil.IsValid (
  115.             notional
  116.         ))
  117.         {
  118.             return null;
  119.         }

  120.         java.util.Map<java.lang.String, org.drip.capital.stress.PnLSeries> fsMap = new
  121.             org.drip.analytics.support.CaseInsensitiveHashMap<org.drip.capital.stress.PnLSeries>();

  122.         java.util.Set<java.lang.String> fsTypeSet =
  123.             org.drip.capital.env.CapitalEstimationContextManager.ContextContainer().volatilityScaleContext().fsTypeAdjustmentMap().keySet();

  124.         for (java.lang.String fsType : fsTypeSet)
  125.         {
  126.             try
  127.             {
  128.                 fsMap.put (
  129.                     fsType,
  130.                     new org.drip.capital.stress.PnLSeries (
  131.                         new double[]
  132.                         {
  133.                             notional * (java.lang.Math.random() - 0.5),
  134.                             notional * (java.lang.Math.random() - 0.5),
  135.                             notional * (java.lang.Math.random() - 0.5),
  136.                         }
  137.                     )
  138.                     {
  139.                         @Override public double composite()
  140.                         {
  141.                             double sum = 0.;
  142.    
  143.                             double[] outcomeArray = outcomeArray();

  144.                             for (double outcome : outcomeArray)
  145.                             {
  146.                                 sum = sum + outcome;
  147.                             }
  148.    
  149.                             return sum / java.lang.Math.sqrt (
  150.                                 outcomeArray.length
  151.                             );
  152.                         }
  153.                     }
  154.                 );
  155.             }
  156.             catch (java.lang.Exception e)
  157.             {
  158.                 e.printStackTrace();

  159.                 return null;
  160.             }
  161.         }

  162.         try
  163.         {
  164.             return new FSPnLDecomposition (
  165.                 fsMap
  166.             );
  167.         }
  168.         catch (java.lang.Exception e)
  169.         {
  170.             e.printStackTrace();
  171.         }

  172.         return null;
  173.     }

  174.     /**
  175.      * FSPnLDecomposition Constructor
  176.      *
  177.      * @param fsMap FS PnL Decomposition Map
  178.      *
  179.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  180.      */

  181.     public FSPnLDecomposition (
  182.         final java.util.Map<java.lang.String, org.drip.capital.stress.PnLSeries> fsMap)
  183.         throws java.lang.Exception
  184.     {
  185.         if (null == (_fsMap = fsMap))
  186.         {
  187.             throw new java.lang.Exception (
  188.                 "FSPnLDecomposition Constructor => Invalid Inputs"
  189.             );
  190.         }
  191.     }

  192.     /**
  193.      * Retrieve the FS PnL Decomposition Map
  194.      *
  195.      * @return FS PnL Decomposition Map
  196.      */

  197.     public java.util.Map<java.lang.String, org.drip.capital.stress.PnLSeries> fsMap()
  198.     {
  199.         return _fsMap;
  200.     }

  201.     /**
  202.      * Retrieve the Cross-RF Gross PnL
  203.      *
  204.      * @return Cross-RF Gross PnL
  205.      */

  206.     public double grossPnL()
  207.     {
  208.         if (null == _fsMap || 0 == _fsMap.size())
  209.         {
  210.             return 0.;
  211.         }

  212.         double total = 0.;

  213.         for (java.util.Map.Entry<java.lang.String, org.drip.capital.stress.PnLSeries> fsEntry :
  214.             _fsMap.entrySet())
  215.         {
  216.             total = total + fsEntry.getValue().composite();
  217.         }

  218.         return total;
  219.     }

  220.     /**
  221.      * Apply the FS Type Specific Volatility Scaling to the PnL Decomposition
  222.      *
  223.      * @param fsTypeAdjustmentMap FS Type Volatility Adjustment Map
  224.      * @param pnlScaler The PnL Scaler
  225.      *
  226.      * @return Volatility Adjusted FS PnL Decomposition Map
  227.      */

  228.     public java.util.Map<java.lang.String, java.lang.Double> applyVolatilityAdjustment (
  229.         final java.util.Map<java.lang.String, java.lang.Double> fsTypeAdjustmentMap,
  230.         final double pnlScaler)
  231.     {
  232.         if (null == fsTypeAdjustmentMap || 0 == fsTypeAdjustmentMap.size() ||
  233.             !org.drip.numerical.common.NumberUtil.IsValid (
  234.                 pnlScaler
  235.             )
  236.         )
  237.         {
  238.             return null;
  239.         }

  240.         java.util.Map<java.lang.String, java.lang.Double> volatilityAdjustedFSMap = new
  241.             org.drip.analytics.support.CaseInsensitiveHashMap<java.lang.Double>();

  242.         for (java.util.Map.Entry<java.lang.String, org.drip.capital.stress.PnLSeries> fsMapEntry :
  243.             _fsMap.entrySet())
  244.         {
  245.             java.lang.String fsType = fsMapEntry.getKey();

  246.             if (!fsTypeAdjustmentMap.containsKey (
  247.                 fsType
  248.             ))
  249.             {
  250.                 return null;
  251.             }

  252.             volatilityAdjustedFSMap.put (
  253.                 fsType,
  254.                 fsMapEntry.getValue().composite() * fsTypeAdjustmentMap.get (
  255.                     fsType
  256.                 ) * pnlScaler
  257.             );
  258.         }

  259.         return volatilityAdjustedFSMap;
  260.     }
  261. }