StaticContinuousOptimalTrajectory.java

  1. package org.drip.sample.almgren2009;

  2. import org.drip.execution.dynamics.*;
  3. import org.drip.execution.impact.ParticipationRateLinear;
  4. import org.drip.execution.nonadaptive.ContinuousAlmgrenChriss;
  5. import org.drip.execution.optimum.EfficientTradingTrajectoryContinuous;
  6. import org.drip.execution.parameters.*;
  7. import org.drip.execution.profiletime.UniformParticipationRateLinear;
  8. import org.drip.function.definition.R1ToR1;
  9. import org.drip.function.r1tor1.FlatUnivariate;
  10. import org.drip.numerical.common.FormatUtil;
  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>StaticContinuousOptimalTrajectory</i> demonstrates the Generation and Usage of Continuous Version of
  89.  * the Discrete Trading Trajectory generated by the Almgren and Chriss (2000) Scheme under the Criterion of
  90.  * No-Drift. The References are:
  91.  *
  92.  * <br><br>
  93.  *  <ul>
  94.  *      <li>
  95.  *          Almgren, R. F., and N. Chriss (2000): Optimal Execution of Portfolio Transactions <i>Journal of
  96.  *              Risk</i> <b>3 (2)</b> 5-39
  97.  *      </li>
  98.  *      <li>
  99.  *          Almgren, R. F. (2009): Optimal Trading in a Dynamic Market
  100.  *              https://www.math.nyu.edu/financial_mathematics/content/02_financial/2009-2.pdf
  101.  *      </li>
  102.  *      <li>
  103.  *          Almgren, R. F. (2012): Optimal Trading with Stochastic Liquidity and Volatility <i>SIAM Journal
  104.  *              of Financial Mathematics</i> <b>3 (1)</b> 163-181
  105.  *      </li>
  106.  *      <li>
  107.  *          Geman, H., D. B. Madan, and M. Yor (2001): Time Changes for Levy Processes <i>Mathematical
  108.  *              Finance</i> <b>11 (1)</b> 79-96
  109.  *      </li>
  110.  *      <li>
  111.  *          Walia, N. (2006): Optimal Trading: Dynamic Stock Liquidation Strategies <b>Princeton
  112.  *              University</b>
  113.  *      </li>
  114.  *  </ul>
  115.  *
  116.  * <br><br>
  117.  *  <ul>
  118.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  119.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/TransactionCostAnalyticsLibrary.md">Transaction Cost Analytics</a></li>
  120.  *      <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>
  121.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/sample/almgren2009/README.md">Almgren (2009) Optimal Adaptive HJB</a></li>
  122.  *  </ul>
  123.  * <br><br>
  124.  *
  125.  * @author Lakshmi Krishnamurthy
  126.  */

  127. public class StaticContinuousOptimalTrajectory {

  128.     public static void main (
  129.         final String[] astrArgs)
  130.         throws Exception
  131.     {
  132.         EnvManager.InitEnv (
  133.             "",
  134.             true
  135.         );

  136.         double dblS0 = 50.;
  137.         double dblX = 1000000.;
  138.         double dblT = 5.;
  139.         double dblAnnualVolatility = 0.30;
  140.         double dblAnnualReturns = 0.10;
  141.         double dblBidAsk = 0.125;
  142.         double dblDailyVolume = 5.e06;
  143.         double dblDailyVolumePermanentImpact = 0.1;
  144.         double dblDailyVolumeTemporaryImpact = 0.01;
  145.         double dblLambdaU = 1.e-06;

  146.         int iN = 20;

  147.         double dblTime = 0.;
  148.         double dblTimeWidth = dblT / iN;

  149.         ArithmeticPriceDynamicsSettings apds = ArithmeticPriceDynamicsSettings.FromAnnualReturnsSettings (
  150.             dblAnnualReturns,
  151.             dblAnnualVolatility,
  152.             0.,
  153.             dblS0
  154.         );

  155.         double dblSigma = apds.epochVolatility();

  156.         PriceMarketImpactLinear pmil = new PriceMarketImpactLinear (
  157.             new AssetTransactionSettings (
  158.                 dblS0,
  159.                 dblDailyVolume,
  160.                 dblBidAsk
  161.             ),
  162.             dblDailyVolumePermanentImpact,
  163.             dblDailyVolumeTemporaryImpact
  164.         );

  165.         ParticipationRateLinear prlPermanent = (ParticipationRateLinear) pmil.permanentTransactionFunction();

  166.         ParticipationRateLinear prlTemporary = (ParticipationRateLinear) pmil.temporaryTransactionFunction();

  167.         LinearPermanentExpectationParameters lpep = ArithmeticPriceEvolutionParametersBuilder.LinearExpectation (
  168.             new ArithmeticPriceDynamicsSettings (
  169.                 0.,
  170.                 new FlatUnivariate (dblSigma),
  171.                 0.
  172.             ),
  173.             new UniformParticipationRateLinear (prlPermanent),
  174.             new UniformParticipationRateLinear (prlTemporary)
  175.         );

  176.         ContinuousAlmgrenChriss cac = ContinuousAlmgrenChriss.Standard (
  177.             dblX,
  178.             dblT,
  179.             lpep,
  180.             dblLambdaU
  181.         );

  182.         EfficientTradingTrajectoryContinuous ettc = (EfficientTradingTrajectoryContinuous) cac.generate();

  183.         R1ToR1 r1ToR1Holdings = ettc.holdings();

  184.         R1ToR1 r1ToR1TradeRate = ettc.tradeRate();

  185.         R1ToR1 r1ToR1TransactionCostVariance = ettc.transactionCostVarianceFunction();

  186.         R1ToR1 r1ToR1TransactionCostExpectation = ettc.transactionCostExpectationFunction();

  187.         System.out.println ();

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

  189.         System.out.println ("\t|    STATIC CONTINUOUS OPTIMAL TRAJECTORY   ||");

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

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

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

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

  194.         System.out.println ("\t|            - Trade Rate                   ||");

  195.         System.out.println ("\t|            - Transaction Cost Expectation ||");

  196.         System.out.println ("\t|            - Transaction Cost Volatility  ||");

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

  198.         for (int i = 1; i <= iN; ++i) {
  199.             dblTime = dblTime + dblTimeWidth;

  200.             System.out.println (
  201.                 "\t|" +
  202.                 FormatUtil.FormatDouble (dblTime, 1, 2, 1.) + " => " +
  203.                 FormatUtil.FormatDouble (r1ToR1Holdings.evaluate (dblTime) / dblX, 1, 3, 1.) + " | " +
  204.                 FormatUtil.FormatDouble (r1ToR1TradeRate.evaluate (dblTime) * dblTimeWidth / dblX, 1, 3, 1.) + " | " +
  205.                 FormatUtil.FormatDouble (r1ToR1TransactionCostExpectation.evaluate (dblTime) / dblX, 1, 3, 1.) + " | " +
  206.                 FormatUtil.FormatDouble (Math.sqrt (r1ToR1TransactionCostVariance.evaluate (dblTime)) / dblX, 1, 3, 1.) + " ||"
  207.             );
  208.         }

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

  210.         EnvManager.TerminateEnv();
  211.     }
  212. }