BoundedHoldingsAllocationControl.java

  1. package org.drip.portfolioconstruction.allocator;

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

  77. /**
  78.  * <i>BoundedHoldingsAllocationControl</i> holds the Parameters needed to build the Portfolio with
  79.  * Bounds on the Underlying Assets.
  80.  *
  81.  *  <br><br>
  82.  *  <ul>
  83.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/PortfolioCore.md">Portfolio Core Module</a></li>
  84.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/AssetAllocationAnalyticsLibrary.md">Asset Allocation Analytics</a></li>
  85.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/portfolioconstruction/README.md">Portfolio Construction under Allocation Constraints</a></li>
  86.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/portfolioconstruction/allocator/README.md">MVO Based Portfolio Allocation Construction</a></li>
  87.  *  </ul>
  88.  *
  89.  * @author Lakshmi Krishnamurthy
  90.  */

  91. public class BoundedHoldingsAllocationControl extends
  92.     org.drip.portfolioconstruction.allocator.HoldingsAllocationControl
  93. {
  94.     private org.drip.analytics.support.CaseInsensitiveHashMap<org.drip.portfolioconstruction.asset.AssetBounds>
  95.         _assetBoundsMap = new
  96.             org.drip.analytics.support.CaseInsensitiveHashMap<org.drip.portfolioconstruction.asset.AssetBounds>();

  97.     private double lowerPivotStartingWeight (
  98.         final java.lang.String assetID)
  99.     {
  100.         org.drip.portfolioconstruction.asset.AssetBounds assetBounds = _assetBoundsMap.get (
  101.             assetID
  102.         );

  103.         double lowerWeight = assetBounds.lower();

  104.         if (org.drip.numerical.common.NumberUtil.IsValid (
  105.             lowerWeight
  106.         ))
  107.         {
  108.             return lowerWeight;
  109.         }

  110.         double upperWeight = assetBounds.upper();

  111.         return !org.drip.numerical.common.NumberUtil.IsValid (
  112.             upperWeight
  113.         ) ? 0. : upperWeight - 0.5;
  114.     }

  115.     /**
  116.      * BoundedHoldingsAllocationControl Constructor
  117.      *
  118.      * @param assetIDArray Array of Assets ID
  119.      * @param customRiskUtilitySettings The Quadratic Custom Risk Utility Settings
  120.      * @param equalityConstraintSettings The Portfolio Equality Constraint Settings
  121.      *
  122.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  123.      */

  124.     public BoundedHoldingsAllocationControl (
  125.         final java.lang.String[] assetIDArray,
  126.         final org.drip.portfolioconstruction.allocator.CustomRiskUtilitySettings customRiskUtilitySettings,
  127.         final org.drip.portfolioconstruction.allocator.EqualityConstraintSettings equalityConstraintSettings)
  128.         throws java.lang.Exception
  129.     {
  130.         super (
  131.             assetIDArray,
  132.             customRiskUtilitySettings,
  133.             equalityConstraintSettings
  134.         );
  135.     }

  136.     /**
  137.      * Retrieve the Portfolio Asset Bounds Map
  138.      *
  139.      * @return The Portfolio Asset Bounds Map
  140.      */

  141.     public
  142.         org.drip.analytics.support.CaseInsensitiveHashMap<org.drip.portfolioconstruction.asset.AssetBounds>
  143.             assetBoundsMap()
  144.     {
  145.         return _assetBoundsMap;
  146.     }

  147.     /**
  148.      * Set the Bounds for the specified Asset
  149.      *
  150.      * @param assetID The Asset ID
  151.      * @param lowerBound The Asset Share Lower Bound
  152.      * @param upperBound The Asset Share Upper Bound
  153.      *
  154.      * @return TRUE - The Asset Bounds successfully set
  155.      */

  156.     public boolean addBound (
  157.         final java.lang.String assetID,
  158.         final double lowerBound,
  159.         final double upperBound)
  160.     {
  161.         if (null == assetID || assetID.isEmpty())
  162.         {
  163.             return false;
  164.         }

  165.         try
  166.         {
  167.             _assetBoundsMap.put (
  168.                 assetID,
  169.                 new org.drip.portfolioconstruction.asset.AssetBounds (
  170.                     lowerBound,
  171.                     upperBound
  172.                 )
  173.             );

  174.             return true;
  175.         }
  176.         catch (java.lang.Exception e)
  177.         {
  178.             e.printStackTrace();
  179.         }

  180.         return false;
  181.     }

  182.     /**
  183.      * Retrieve the Lower Bound for the Specified Asset ID
  184.      *
  185.      * @param assetID The Asset ID
  186.      *
  187.      * @return The Lower Bound for the Specified Asset ID
  188.      *
  189.      * @throws java.lang.Exception Thrown if the Bound cannot be extracted
  190.      */

  191.     public double lowerBound (
  192.         final java.lang.String assetID)
  193.         throws java.lang.Exception
  194.     {
  195.         if (!_assetBoundsMap.containsKey (assetID))
  196.         {
  197.             throw new java.lang.Exception
  198.                 ("BoundedHoldingsAllocationControl::lowerBound => Invalid Inputs");
  199.         }

  200.         return _assetBoundsMap.get (assetID).lower();
  201.     }

  202.     /**
  203.      * Retrieve the Upper Bound for the Specified Asset ID
  204.      *
  205.      * @param assetID The Asset ID
  206.      *
  207.      * @return The Upper Bound for the Specified Asset ID
  208.      *
  209.      * @throws java.lang.Exception Thrown if the Bound cannot be extracted
  210.      */

  211.     public double upperBound (
  212.         final java.lang.String assetID)
  213.         throws java.lang.Exception
  214.     {
  215.         if (!_assetBoundsMap.containsKey (assetID))
  216.         {
  217.             throw new java.lang.Exception
  218.                 ("BoundedHoldingsAllocationControl::upperBound => Invalid Inputs");
  219.         }

  220.         return _assetBoundsMap.get (assetID).upper();
  221.     }

  222.     /**
  223.      * Retrieve the Array of the Inequality Constraint Functions
  224.      *
  225.      * @param extraneousVariateCount Number of Extraneous Variates
  226.      *
  227.      * @return The Array of the Inequality Constraint Functions
  228.      */

  229.     public org.drip.function.rdtor1.AffineBoundMultivariate[] boundingConstraintsArray (
  230.         final int extraneousVariateCount)
  231.     {
  232.         java.util.List<org.drip.function.rdtor1.AffineBoundMultivariate> boundingConstraintsList =
  233.             new java.util.ArrayList<org.drip.function.rdtor1.AffineBoundMultivariate>();

  234.         java.lang.String[] assetIDArray = assetIDArray();

  235.         int assetCount = assetIDArray.length;

  236.         for (int assetIndex = 0; assetIndex < assetCount; ++assetIndex)
  237.         {
  238.             if (!_assetBoundsMap.containsKey (assetIDArray[assetIndex]))
  239.             {
  240.                 continue;
  241.             }

  242.             org.drip.portfolioconstruction.asset.AssetBounds assetBounds = _assetBoundsMap.get (
  243.                 assetIDArray[assetIndex]
  244.             );

  245.             double lowerBound = assetBounds.lower();

  246.             double upperBound = assetBounds.upper();

  247.             try
  248.             {
  249.                 if (org.drip.numerical.common.NumberUtil.IsValid (lowerBound))
  250.                 {
  251.                     boundingConstraintsList.add (
  252.                         new org.drip.function.rdtor1.AffineBoundMultivariate (
  253.                             false,
  254.                             assetIndex,
  255.                             assetCount + extraneousVariateCount,
  256.                             lowerBound
  257.                         )
  258.                     );
  259.                 }

  260.                 if (org.drip.numerical.common.NumberUtil.IsValid (upperBound))
  261.                 {
  262.                     boundingConstraintsList.add (
  263.                         new org.drip.function.rdtor1.AffineBoundMultivariate (
  264.                             true,
  265.                             assetIndex,
  266.                             assetCount + extraneousVariateCount,
  267.                             upperBound
  268.                         )
  269.                     );
  270.                 }
  271.             }
  272.             catch (java.lang.Exception e)
  273.             {
  274.                 e.printStackTrace();

  275.                 return null;
  276.             }
  277.         }

  278.         int constraintCount = boundingConstraintsList.size();

  279.         if (0 == constraintCount)
  280.         {
  281.             return null;
  282.         }

  283.         org.drip.function.rdtor1.AffineBoundMultivariate[] boundingConstraintsArray =
  284.             new org.drip.function.rdtor1.AffineBoundMultivariate[constraintCount];

  285.         for (int constraintIndex = 0; constraintIndex < constraintCount; ++constraintIndex)
  286.         {
  287.             boundingConstraintsArray[constraintIndex] = boundingConstraintsList.get (constraintIndex);
  288.         }

  289.         return boundingConstraintsArray;
  290.     }

  291.     /**
  292.      * Retrieve an Array of Viable Starting Variates From Within the Feasible Region
  293.      *
  294.      * @return An Array of Viable Starting Variates From Within the Feasible Region
  295.      */

  296.     public double[] feasibleStart()
  297.     {
  298.         boolean returnsConstraintPresent = org.drip.numerical.common.NumberUtil.IsValid (
  299.             equalityConstraintSettings().returnsConstraint()
  300.         );

  301.         java.lang.String[] assetIDArray = assetIDArray();

  302.         int assetCount = assetIDArray.length;
  303.         double[] startingVariateArray = new double[assetCount + (returnsConstraintPresent ? 2 : 1)];

  304.         for (int assetIndex = 0; assetIndex < assetCount; ++assetIndex)
  305.         {
  306.             startingVariateArray[assetIndex] = _assetBoundsMap.get (assetIDArray[assetIndex]).feasibleStart();
  307.         }

  308.         if (returnsConstraintPresent)
  309.         {
  310.             startingVariateArray[assetCount + 1] = 0.;
  311.         }

  312.         startingVariateArray[assetCount] = 0.;
  313.         return startingVariateArray;
  314.     }

  315.     /**
  316.      * Retrieve an Array of Viable Weight Constrained Starting Variates From Within the Feasible Region
  317.      *
  318.      * @return An Array of Viable Weight Constrained Starting Variates From Within the Feasible Region
  319.      */

  320.     public double[] weightConstrainedFeasibleStart()
  321.     {
  322.         boolean returnsConstraintPresent = org.drip.numerical.common.NumberUtil.IsValid (
  323.             equalityConstraintSettings().returnsConstraint()
  324.         );

  325.         java.lang.String[] assetIDArray = assetIDArray();

  326.         double cumulativeWeight = 0.;
  327.         double allocationQuantumFactor = 0.1;
  328.         int assetCount = assetIDArray.length;
  329.         double[] startingVariateArray = new double[assetCount + (returnsConstraintPresent ? 2 : 1)];

  330.         for (int i = 0; i < assetCount; ++i)
  331.         {
  332.             startingVariateArray[i] = lowerPivotStartingWeight (
  333.                 assetIDArray[i]
  334.             );

  335.             cumulativeWeight += startingVariateArray[i];
  336.         }

  337.         if (1. < cumulativeWeight)
  338.         {
  339.             return null;
  340.         }

  341.         boolean allocationLoop = true;
  342.         double allocationWeightQuantum = allocationQuantumFactor * (1. - cumulativeWeight) / assetCount;

  343.         while (allocationLoop)
  344.         {
  345.             for (int i = 0; i < assetCount; ++i)
  346.             {
  347.                 if (!allocationLoop)
  348.                 {
  349.                     break;
  350.                 }

  351.                 org.drip.portfolioconstruction.asset.AssetBounds assetBounds = _assetBoundsMap.get (
  352.                     assetIDArray[i]
  353.                 );

  354.                 double newStartingWeight = startingVariateArray[i] + allocationWeightQuantum;

  355.                 if (assetBounds.lower() <= newStartingWeight && assetBounds.upper() >= newStartingWeight)
  356.                 {
  357.                     startingVariateArray[i] = newStartingWeight;
  358.                     cumulativeWeight = cumulativeWeight + allocationWeightQuantum;;
  359.                 }

  360.                 if (1. <= cumulativeWeight)
  361.                 {
  362.                     allocationLoop = false;
  363.                 }
  364.             }
  365.         }

  366.         if (returnsConstraintPresent)
  367.         {
  368.             startingVariateArray[assetCount + 1] = 0.;
  369.         }

  370.         startingVariateArray[assetCount] = 0.;
  371.         return startingVariateArray;
  372.     }
  373. }