ImportanceWeight13f.java

  1. package org.drip.sample.anfuso2017;

  2. import org.drip.measure.gaussian.R1UnivariateNormal;
  3. import org.drip.numerical.common.FormatUtil;
  4. import org.drip.service.env.EnvManager;
  5. import org.drip.validation.distance.ImportanceWeight;

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

  78. /**
  79.  * <i>ImportanceWeight13f</i> demonstrates the Computation of the Importance Weight set out in Table 13f of
  80.  * Anfuso, Karyampas, and Nawroth (2017).
  81.  *
  82.  *  <br><br>
  83.  *  <ul>
  84.  *      <li>
  85.  *          Anfuso, F., D. Karyampas, and A. Nawroth (2017): A Sound Basel III Compliant Framework for
  86.  *              Back-testing Credit Exposure Models
  87.  *              https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2264620 <b>eSSRN</b>
  88.  *      </li>
  89.  *      <li>
  90.  *          Diebold, F. X., T. A. Gunther, and A. S. Tay (1998): Evaluating Density Forecasts with
  91.  *              Applications to Financial Risk Management, International Economic Review 39 (4) 863-883
  92.  *      </li>
  93.  *      <li>
  94.  *          Kenyon, C., and R. Stamm (2012): Discounting, LIBOR, CVA, and Funding: Interest Rate and Credit
  95.  *              Pricing, Palgrave Macmillan
  96.  *      </li>
  97.  *      <li>
  98.  *          Wikipedia (2018): Probability Integral Transform
  99.  *              https://en.wikipedia.org/wiki/Probability_integral_transform
  100.  *      </li>
  101.  *      <li>
  102.  *          Wikipedia (2019): p-value https://en.wikipedia.org/wiki/P-value
  103.  *      </li>
  104.  *  </ul>
  105.  *
  106.  *  <br><br>
  107.  *  <ul>
  108.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationalCore.md">Computational Core Module</a></li>
  109.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ModelValidationAnalyticsLibrary.md">Model Validation Analytics Library</a></li>
  110.  *      <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>
  111.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/anfuso2017/README.md">Anfuso, Karyampas, and Nawroth (2013) Replications</a></li>
  112.  *  </ul>
  113.  * <br><br>
  114.  *
  115.  * @author Lakshmi Krishnamurthy
  116.  */

  117. public class ImportanceWeight13f
  118. {

  119.     public static final void main (
  120.         final String[] argumentArray)
  121.         throws Exception
  122.     {
  123.         EnvManager.InitEnv ("");

  124.         double mean = 10.;
  125.         double sigma = 1.;
  126.         double[] quantileArray =
  127.         {
  128.             0.001,
  129.             0.050,
  130.             0.100,
  131.             0.150,
  132.             0.200,
  133.             0.250,
  134.             0.300,
  135.             0.350,
  136.             0.400,
  137.             0.450,
  138.             0.500,
  139.             0.550,
  140.             0.600,
  141.             0.650,
  142.             0.700,
  143.             0.750,
  144.             0.800,
  145.             0.850,
  146.             0.900,
  147.             0.950,
  148.             0.999
  149.         };

  150.         ImportanceWeight importanceWeight = ImportanceWeight.Normal (
  151.             new R1UnivariateNormal (
  152.                 mean,
  153.                 sigma
  154.             )
  155.         );

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

  157.         System.out.println ("\t|  QUANTILE WEIGHTS  ||");

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

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

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

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

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

  163.         for (double quantile : quantileArray)
  164.         {
  165.             System.out.println (
  166.                 "\t|" + FormatUtil.FormatDouble (quantile, 1, 3, 1.) + " => " +
  167.                 FormatUtil.FormatDouble (importanceWeight.quantileLoading (quantile), 1, 6, 1.) + " ||"
  168.             );
  169.         }

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

  171.         System.out.println();

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

  173.         System.out.println (
  174.             "\t| Positive Exposure => " +
  175.             FormatUtil.FormatDouble (importanceWeight.positiveExpectation(), 2, 6, 1.) + " ||"
  176.         );

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

  178.         EnvManager.TerminateEnv();
  179.     }
  180. }