ContinuousAlmgrenChriss.java

  1. package org.drip.execution.nonadaptive;

  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>ContinuousAlmgrenChriss</i> contains the Continuous Version of the Discrete Trading Trajectory
  79.  * generated by the Almgren and Chriss (2000) Scheme under the Criterion of No-Drift. The References are:
  80.  *
  81.  * <br><br>
  82.  *  <ul>
  83.  *      <li>
  84.  *          Almgren, R. F., and N. Chriss (2000): Optimal Execution of Portfolio Transactions <i>Journal of
  85.  *              Risk</i> <b>3 (2)</b> 5-39
  86.  *      </li>
  87.  *      <li>
  88.  *          Almgren, R. F. (2009): Optimal Trading in a Dynamic Market
  89.  *              https://www.math.nyu.edu/financial_mathematics/content/02_financial/2009-2.pdf
  90.  *      </li>
  91.  *      <li>
  92.  *          Almgren, R. F. (2012): Optimal Trading with Stochastic Liquidity and Volatility <i>SIAM Journal
  93.  *          of Financial Mathematics</i> <b>3 (1)</b> 163-181
  94.  *      </li>
  95.  *      <li>
  96.  *          Geman, H., D. B. Madan, and M. Yor (2001): Time Changes for Levy Processes <i>Mathematical
  97.  *              Finance</i> <b>11 (1)</b> 79-96
  98.  *      </li>
  99.  *      <li>
  100.  *          Walia, N. (2006): <i>Optimal Trading: Dynamic Stock Liquidation Strategies</i> Princeton
  101.                 University
  102.  *      </li>
  103.  *  </ul>
  104.  *
  105.  *  <br><br>
  106.  *  <ul>
  107.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  108.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/TransactionCostAnalyticsLibrary.md">Transaction Cost Analytics</a></li>
  109.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/execution/README.md">Optimal Impact/Capture Based Trading Trajectories - Deterministic, Stochastic, Static, and Dynamic</a></li>
  110.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/execution/nonadaptive/README.md">Almgren-Chriss Static Optimal Trajectory</a></li>
  111.  *  </ul>
  112.  *
  113.  * @author Lakshmi Krishnamurthy
  114.  */

  115. public class ContinuousAlmgrenChriss extends org.drip.execution.nonadaptive.StaticOptimalSchemeContinuous {

  116.     /**
  117.      * Create the Standard ContinuousAlmgrenChriss Instance
  118.      *
  119.      * @param dblStartHoldings Trajectory Start Holdings
  120.      * @param dblFinishTime Trajectory Finish Time
  121.      * @param lpep The Linear Impact Expectation Parameters
  122.      * @param dblRiskAversion The Risk Aversion Parameter
  123.      *
  124.      * @return The ContinuousAlmgrenChriss Instance
  125.      */

  126.     public static final ContinuousAlmgrenChriss Standard (
  127.         final double dblStartHoldings,
  128.         final double dblFinishTime,
  129.         final org.drip.execution.dynamics.LinearPermanentExpectationParameters lpep,
  130.         final double dblRiskAversion)
  131.     {
  132.         try {
  133.             return new ContinuousAlmgrenChriss (new org.drip.execution.strategy.OrderSpecification
  134.                 (dblStartHoldings, dblFinishTime), lpep, new
  135.                     org.drip.execution.risk.MeanVarianceObjectiveUtility (dblRiskAversion));
  136.         } catch (java.lang.Exception e) {
  137.             e.printStackTrace();
  138.         }

  139.         return null;
  140.     }

  141.     /**
  142.      * ContinuousAlmgrenChriss Constructor
  143.      *
  144.      * @param os The Order Specification
  145.      * @param lpep The Linear Impact Expectation Parameters
  146.      * @param mvou The Mean Variation Objective Utility
  147.      *
  148.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  149.      */

  150.     public ContinuousAlmgrenChriss (
  151.         final org.drip.execution.strategy.OrderSpecification os,
  152.         final org.drip.execution.dynamics.LinearPermanentExpectationParameters lpep,
  153.         final org.drip.execution.risk.MeanVarianceObjectiveUtility mvou)
  154.         throws java.lang.Exception
  155.     {
  156.         super (os, lpep, mvou);
  157.     }

  158.     @Override public org.drip.execution.optimum.EfficientTradingTrajectory generate()
  159.     {
  160.         org.drip.execution.dynamics.LinearPermanentExpectationParameters lpep =
  161.             (org.drip.execution.dynamics.LinearPermanentExpectationParameters) priceEvolutionParameters();

  162.         org.drip.execution.impact.TransactionFunction tfTemporaryExpectation =
  163.             lpep.temporaryExpectation().epochImpactFunction();

  164.         if (!(tfTemporaryExpectation instanceof org.drip.execution.impact.TransactionFunctionLinear))
  165.             return null;

  166.         double dblEpochVolatility = java.lang.Double.NaN;
  167.         org.drip.execution.impact.TransactionFunctionLinear tflTemporaryExpectation =
  168.             (org.drip.execution.impact.TransactionFunctionLinear) tfTemporaryExpectation;

  169.         try {
  170.             dblEpochVolatility = lpep.arithmeticPriceDynamicsSettings().epochVolatility();
  171.         } catch (java.lang.Exception e) {
  172.             e.printStackTrace();

  173.             return null;
  174.         }

  175.         final double dblSigma = dblEpochVolatility;

  176.         final double dblEta = tflTemporaryExpectation.slope();

  177.         final double dblKappa = java.lang.Math.sqrt (((org.drip.execution.risk.MeanVarianceObjectiveUtility)
  178.             objectiveUtility()).riskAversion() * dblSigma * dblSigma / dblEta);

  179.         org.drip.execution.strategy.OrderSpecification os = orderSpecification();

  180.         final double dblT = os.maxExecutionTime();

  181.         final double dblX = os.size();

  182.         final org.drip.function.definition.R1ToR1 r1ToR1Holdings = new org.drip.function.definition.R1ToR1
  183.             (null) {
  184.             @Override public double evaluate (
  185.                 final double dblTime)
  186.                 throws java.lang.Exception
  187.             {
  188.                 if (!org.drip.numerical.common.NumberUtil.IsValid (dblTime))
  189.                     throw new java.lang.Exception
  190.                         ("ContinuousAlmgrenChriss::Holdings::evaluate => Invalid Inputs");

  191.                 return java.lang.Math.sinh (dblKappa * (dblT - dblTime)) / java.lang.Math.sinh (dblKappa *
  192.                     dblT) * dblX;
  193.             }
  194.         };

  195.         final org.drip.function.definition.R1ToR1 r1ToR1TradeRate = new org.drip.function.definition.R1ToR1
  196.             (null)
  197.         {
  198.             @Override public double evaluate (
  199.                 final double dblTime)
  200.                 throws java.lang.Exception
  201.             {
  202.                 if (!org.drip.numerical.common.NumberUtil.IsValid (dblTime))
  203.                     throw new java.lang.Exception
  204.                         ("ContinuousAlmgrenChriss::TradeRate::evaluate => Invalid Inputs");

  205.                 return dblKappa * dblX * java.lang.Math.cosh (dblKappa * (dblT - dblTime)) /
  206.                     java.lang.Math.sinh (dblKappa * dblT);
  207.             }
  208.         };

  209.         final org.drip.function.definition.R1ToR1 r1ToR1TransactionCostExpectationRate = new
  210.             org.drip.function.definition.R1ToR1 (null) {
  211.             @Override public double evaluate (
  212.                 final double dblTime)
  213.                 throws java.lang.Exception
  214.             {
  215.                 double dblTradeRate = r1ToR1TradeRate.evaluate (dblTime);

  216.                 if (!org.drip.numerical.common.NumberUtil.IsValid (dblTradeRate))
  217.                     throw new java.lang.Exception
  218.                         ("ContinuousAlmgrenChriss::ExpectationRate::evaluate => Invalid Inputs");

  219.                 return dblEta * dblTradeRate * dblTradeRate;
  220.             }
  221.         };

  222.         org.drip.function.definition.R1ToR1 r1ToR1TransactionCostExpectation = new
  223.             org.drip.function.definition.R1ToR1 (null) {
  224.             @Override public double evaluate (
  225.                 final double dblTime)
  226.                 throws java.lang.Exception
  227.             {
  228.                 return r1ToR1TransactionCostExpectationRate.integrate (dblTime, dblT);
  229.             }
  230.         };

  231.         final org.drip.function.definition.R1ToR1 r1ToR1TransactionCostVarianceRate = new
  232.             org.drip.function.definition.R1ToR1 (null) {
  233.             @Override public double evaluate (
  234.                 final double dblTime)
  235.                 throws java.lang.Exception
  236.             {
  237.                 double dblHoldings = r1ToR1Holdings.evaluate (dblTime);

  238.                 return dblSigma * dblSigma * dblHoldings * dblHoldings;
  239.             }
  240.         };

  241.         org.drip.function.definition.R1ToR1 r1ToR1TransactionCostVariance = new
  242.             org.drip.function.definition.R1ToR1 (null) {
  243.             @Override public double evaluate (
  244.                 final double dblTime)
  245.                 throws java.lang.Exception
  246.             {
  247.                 return r1ToR1TransactionCostVarianceRate.integrate (dblTime, dblT);
  248.             }
  249.         };

  250.         try {
  251.             return new org.drip.execution.optimum.EfficientTradingTrajectoryContinuous (dblT, dblEta *
  252.                 dblKappa * dblX * dblX / java.lang.Math.tanh (dblKappa * dblT),
  253.                     r1ToR1TransactionCostExpectation.evaluate (0.), 1. / dblKappa, dblEta * dblX / (dblT *
  254.                         dblEpochVolatility * java.lang.Math.sqrt (dblT)), r1ToR1Holdings, r1ToR1TradeRate,
  255.                             r1ToR1TransactionCostExpectation, r1ToR1TransactionCostVariance);
  256.         } catch (java.lang.Exception e) {
  257.             e.printStackTrace();
  258.         }

  259.         return null;
  260.     }
  261. }