BoundedMarkovitzBullet.java

  1. package org.drip.sample.efficientfrontier;

  2. import java.util.*;

  3. import org.drip.function.rdtor1descent.LineStepEvolutionControl;
  4. import org.drip.function.rdtor1solver.InteriorPointBarrierControl;
  5. import org.drip.measure.statistics.MultivariateMoments;
  6. import org.drip.numerical.common.FormatUtil;
  7. import org.drip.portfolioconstruction.allocator.*;
  8. import org.drip.portfolioconstruction.asset.*;
  9. import org.drip.portfolioconstruction.mpt.MarkovitzBullet;
  10. import org.drip.portfolioconstruction.params.AssetUniverseStatisticalProperties;
  11. import org.drip.service.env.EnvManager;

  12. /*
  13.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  14.  */

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

  87. /**
  88.  * <i>BoundedMarkovitzBullet</i> demonstrates the Construction of the Efficient Frontier using the
  89.  * Constrained Mean Variance Optimizer for a Bounded Portfolio.
  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/AssetAllocationAnalyticsLibrary.md">Asset Allocation Analytics</a></li>
  95.  *      <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>
  96.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/efficientfrontier/README.md">Efficient Frontier Markovitz Bullet Variants</a></li>
  97.  *  </ul>
  98.  * <br><br>
  99.  *
  100.  * @author Lakshmi Krishnamurthy
  101.  */

  102. public class BoundedMarkovitzBullet
  103. {

  104.     private static void DisplayPortfolioMetrics (
  105.         final HoldingsAllocation optimalOutput)
  106.         throws Exception
  107.     {
  108.         AssetComponent[] globalMinimumAssetComponentArray =
  109.             optimalOutput.optimalPortfolio().assetComponentArray();

  110.         String dump = "\t|" +
  111.             FormatUtil.FormatDouble (optimalOutput.optimalMetrics().excessReturnsMean(), 1, 4, 100.) + "% |" +
  112.             FormatUtil.FormatDouble (optimalOutput.optimalMetrics().excessReturnsStandardDeviation(), 1, 4, 100.) + " |";

  113.         for (AssetComponent assetComponent : globalMinimumAssetComponentArray)
  114.         {
  115.             dump += " " + FormatUtil.FormatDouble (
  116.                 assetComponent.amount(), 3, 2, 100.
  117.             ) + "% |";
  118.         }

  119.         System.out.println (dump + "|");
  120.     }

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

  126.         String[] assetNameArray = new String[]
  127.         {
  128.             "TOK",
  129.             "EWJ",
  130.             "HYG",
  131.             "LQD",
  132.             "EMD",
  133.             "GSG",
  134.             "BWX"
  135.         };
  136.         double[] assetHoldingsLowerBoundArray = new double[]
  137.         {
  138.             0.05,
  139.             0.05,
  140.             0.05,
  141.             0.10,
  142.             0.05,
  143.             0.05,
  144.             0.03
  145.         };
  146.         double[] assetHoldingsUpperBoundArray = new double[]
  147.         {
  148.             0.40,
  149.             0.40,
  150.             0.30,
  151.             0.60,
  152.             0.35,
  153.             0.15,
  154.             0.50
  155.         };
  156.         double[] expectedAssetReturnsArray = new double[]
  157.         {
  158.             0.008430,
  159.             0.007230,
  160.             0.006450,
  161.             0.002560,
  162.             0.004480,
  163.             0.006840,
  164.             0.001670
  165.         };
  166.         double[][] assetReturnsCovarianceMatrix = new double[][]
  167.         {
  168.             {0.002733, 0.002083, 0.001593, 0.000488, 0.001172, 0.002312, 0.000710},
  169.             {0.002083, 0.002768, 0.001302, 0.000457, 0.001105, 0.001647, 0.000563},
  170.             {0.001593, 0.001302, 0.001463, 0.000639, 0.001050, 0.001110, 0.000519},
  171.             {0.000488, 0.000457, 0.000639, 0.000608, 0.000663, 0.000042, 0.000370},
  172.             {0.001172, 0.001105, 0.001050, 0.000663, 0.001389, 0.000825, 0.000661},
  173.             {0.002312, 0.001647, 0.001110, 0.000042, 0.000825, 0.005211, 0.000749},
  174.             {0.000710, 0.000563, 0.000519, 0.000370, 0.000661, 0.000749, 0.000703}
  175.         };
  176.         int frontierSampleUnits = 20;

  177.         AssetUniverseStatisticalProperties assetUniverseStatisticalProperties =
  178.             AssetUniverseStatisticalProperties.FromMultivariateMetrics (
  179.                 MultivariateMoments.Standard (
  180.                     assetNameArray,
  181.                     expectedAssetReturnsArray,
  182.                     assetReturnsCovarianceMatrix
  183.                 )
  184.             );

  185.         double[][] covarianceMatrix = assetUniverseStatisticalProperties.covariance (
  186.             assetNameArray
  187.         );

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

  189.         System.out.println ("\t|                                  CROSS ASSET COVARIANCE MATRIX                                 ||");

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

  191.         String header = "\t|     |";

  192.         for (int assetIndex = 0;
  193.             assetIndex < assetNameArray.length;
  194.             ++assetIndex)
  195.         {
  196.             header += "    " + assetNameArray[assetIndex] + "     |";
  197.         }

  198.         System.out.println (header + "|");

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

  200.         for (int assetIndexI = 0;
  201.             assetIndexI < assetNameArray.length;
  202.             ++assetIndexI)
  203.         {
  204.             String dump = "\t| " + assetNameArray[assetIndexI] + " ";

  205.             for (int assetIndexJ = 0;
  206.                 assetIndexJ < assetNameArray.length;
  207.                 ++assetIndexJ)
  208.             {
  209.                 dump += "|" + FormatUtil.FormatDouble (
  210.                     covarianceMatrix[assetIndexI][assetIndexJ], 1, 8, 1.
  211.                 ) + " ";
  212.             }

  213.             System.out.println (dump + "||");
  214.         }

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

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

  217.         System.out.println ("\t|   ASSET BOUNDS    ||");

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

  219.         for (int assetIndex = 0;
  220.             assetIndex < assetNameArray.length;
  221.             ++assetIndex)
  222.         {
  223.             System.out.println (
  224.                 "\t| " + assetNameArray[assetIndex] + " | " +
  225.                 FormatUtil.FormatDouble (assetHoldingsLowerBoundArray[assetIndex], 2, 0, 100.) + "% | " +
  226.                 FormatUtil.FormatDouble (assetHoldingsUpperBoundArray[assetIndex], 2, 0, 100.) + "% ||"
  227.             );
  228.         }

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

  230.         InteriorPointBarrierControl interiorPointBarrierControl = InteriorPointBarrierControl.Standard();

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

  232.         System.out.println ("\t|  INTERIOR POINT METHOD BARRIER PARAMETERS  ||");

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

  234.         System.out.println (
  235.             "\t|    Barrier Decay Velocity        : " + 1. / interiorPointBarrierControl.decayVelocity()
  236.         );

  237.         System.out.println (
  238.             "\t|    Barrier Decay Steps           : " + interiorPointBarrierControl.decayStepCount()
  239.         );

  240.         System.out.println (
  241.             "\t|    Initial Barrier Strength      : " + interiorPointBarrierControl.initialStrength()
  242.         );

  243.         System.out.println (
  244.             "\t|    Barrier Convergence Tolerance : " + interiorPointBarrierControl.relativeTolerance()
  245.         );

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

  247.         BoundedHoldingsAllocationControl boundedPortfolioConstructionParameters =
  248.             new BoundedHoldingsAllocationControl (
  249.                 assetNameArray,
  250.                 CustomRiskUtilitySettings.VarianceMinimizer(),
  251.                 new EqualityConstraintSettings (
  252.                     EqualityConstraintSettings.FULLY_INVESTED_CONSTRAINT,
  253.                     Double.NaN
  254.                 )
  255.             );

  256.         for (int assetIndex = 0;
  257.             assetIndex < assetNameArray.length;
  258.             ++assetIndex)
  259.         {
  260.             boundedPortfolioConstructionParameters.addBound (
  261.                 assetNameArray[assetIndex],
  262.                 assetHoldingsLowerBoundArray[assetIndex],
  263.                 assetHoldingsUpperBoundArray[assetIndex]
  264.             );
  265.         }

  266.         MarkovitzBullet markovitzBullet = new ConstrainedMeanVarianceOptimizer (
  267.             interiorPointBarrierControl,
  268.             LineStepEvolutionControl.NocedalWrightStrongWolfe (
  269.                 false
  270.             )
  271.         ).efficientFrontier (
  272.             boundedPortfolioConstructionParameters,
  273.             assetUniverseStatisticalProperties,
  274.             frontierSampleUnits
  275.         );

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

  277.         System.out.println ("\t|                     GLOBAL MINIMUM VARIANCE AND MAXIMUM RETURNS PORTFOLIOS                    ||");

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

  279.         header = "\t| RETURNS | RISK % |";

  280.         for (int assetIndex = 0;
  281.             assetIndex < assetNameArray.length;
  282.             ++assetIndex)
  283.         {
  284.             header += "   " + assetNameArray[assetIndex] + "    |";
  285.         }

  286.         System.out.println (header + "|");

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

  288.         DisplayPortfolioMetrics (markovitzBullet.globalMinimumVariance());

  289.         DisplayPortfolioMetrics (markovitzBullet.longOnlyMaximumReturns());

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

  291.         TreeMap<Double, HoldingsAllocation> frontierPortfolioMap = markovitzBullet.optimalPortfolioMap();

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

  293.         System.out.println ("\t|         EFFICIENT FRONTIER: PORTFOLIO RISK & RETURNS + CORRESPONDING ASSET ALLOCATION         ||");

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

  295.         System.out.println (header + "|");

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

  297.         for (Map.Entry<Double, HoldingsAllocation> me : frontierPortfolioMap.entrySet())
  298.         {
  299.             DisplayPortfolioMetrics (me.getValue());
  300.         }

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

  302.         EnvManager.TerminateEnv();
  303.     }
  304. }