Pith. sign in

REVIEW 3 major objections 4 minor 2 cited by

Solving high-dimensional optimal stopping problems using deep learning

T0 review · 3 major / 4 minor · reviewed 2026-08-14 · deepseek-v4-flash

Pith's one-line read A deep learning algorithm prices high-dimensional American and Bermudan options by training neural networks to represent stopping times directly.

desk verdict A solid and honest deep-optimal-stopping paper whose low-dimensional validation is convincing, but whose 5000-dimensional headline number is self-referential and should not be read as an independent accuracy claim. read the letter →

arxiv 1908.01602 v3 pith:AYI6HYED submitted 2019-08-05 cs.CE cs.LGmath.PRq-fin.CP

classification cs.CEcs.LGmath.PRq-fin.CP MSC 60G4065C0591G20
keywords optimalstoppingAmericanoptionsBermudandeeplearningcurseofdimensionalityneuralnetworkstimefactorisationstochasticgradientascent
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper proposes a deep learning algorithm that turns a high-dimensional optimal stopping problem, such as pricing an American or Bermudan option on many underlying assets, into a single neural network training problem. The central move is to represent a discrete stopping time through measurable factors that decide, at each time step, whether to stop, and to relax those binary factors into smooth network outputs. Training then maximizes the expected discounted payoff by stochastic gradient ascent, producing both an approximate optimal exercise strategy and a low-biased estimate of the option price. The numerical results suggest the method can handle problems with hundreds or thousands of assets, including a Bermudan max-call option in 5000 dimensions with a reported price of about 165.430 and a runtime of about 2899 seconds. If the method holds up beyond the tested examples, it would offer a practical route around the curse of dimensionality for early-exercise derivatives.

What carries the argument

The load-bearing identity is the factorisation lemma for stopping times (Lemma 2.2), which expresses any discrete stopping time as a sum of measurable functions of the observed path, together with the recursive construction of approximate stopping-time factors $U_{n,\theta}$ that always sum to one. The paper pairs this with a fixed feedforward architecture: one network per time step, with two hidden layers of width equal to the problem dimension, logistic output activation, batch normalisation, and the Adam optimiser. This machinery converts optimal stopping into an unconstrained parameter search and yields the explicit exercise rule that stops at the first time the current stopping factor outweighs all later factors.

What would settle it

Run the same algorithm on a 100-asset payoff whose optimal exercise region is fragmented into many disjoint zones, for example a basket payoff with several separate in-the-money bands, and compare the low-biased estimate with a dual upper bound; if the gap exceeds the Monte Carlo error, the chosen network architecture is too small to represent the optimal stopping time.

Watch

Extended reading notes

Core claim

The paper's central claim is that the supremum over all stopping times in a discrete-time optimal stopping problem can be approximated by a supremum over neural network parameters. This is made possible by a factorisation lemma: any stopping time adapted to a Markov process can be written as a sum over time indices of indicator functions of the observed path, and these indicators can be relaxed into neural-network outputs that define a randomised stopping time. The resulting objective function, an expectation of the payoff weighted by these randomised stopping factors, is maximized by stochastic gradient ascent; a final threshold rule converts the trained network into a genuine stopping time. The paper reports that this single-training-pass procedure matches reference values across many benchmark problems, including American puts, geometric average options, max-call options, basket options under local volatility, and a path-dependent derivative recast as a 100-dimensional problem.

Load-bearing premise

The method assumes that a feedforward network with two hidden layers, each as wide as the number of underlying assets, can represent the optimal stopping rule closely enough for the tested payoff structures and dynamics; this is supported by numerical examples but not by a convergence proof.

Editorial extensions

If this is right

  • Bermudan and American options on hundreds or thousands of underlying assets can be priced without any grid or mesh in the asset dimension, because the networks scale with the dimension of the state rather than the size of a state space.
  • The method outputs an approximate exercise strategy, not only a price, so it can be used to guide early-exercise decisions in practice.
  • The same formulation applies to any simulable Markov process, including path-dependent derivatives once they are embedded in a higher-dimensional Markovian state.
  • Because the final Monte Carlo estimate uses a genuine stopping time, the reported price is a low-biased lower bound; reference values are needed to judge how close it is to the true price.
  • The 5000-dimensional max-call result suggests that many high-dimensional exercise problems have enough low-dimensional structure for a moderately sized network to capture.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper: the factorisation construction could be reused for related discrete decision problems, such as optimal stopping with multiple exercise rights or swing options, by replacing the single stopping indicator with a sequence of exercise decisions.
  • Beyond the paper: pairing this low-biased primal estimate with a dual upper bound method would turn the reported point estimates into proper confidence intervals, which is a natural next step the paper does not pursue.
  • Beyond the paper: a testable extension is to apply the same architecture to payoffs with fragmented or discontinuous exercise regions, such as barrier-like payoffs, where the smooth network representation may need more layers or width to stay accurate.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. This paper proposes a deep-learning algorithm for high-dimensional optimal stopping problems arising in American and Bermudan option pricing. The method represents randomized stopping times through neural-network stopping-time factors, maximizes the expected discounted payoff over network parameters by stochastic gradient ascent (Adam), and then converts the trained randomized rule into a true stopping time whose payoff is evaluated by Monte Carlo. The authors prove a factorisation lemma for discrete stopping times (Lemma 2.2), observe that the final price estimator is low-biased (inequality (48)), and report numerical experiments for Brownian-motion stopping, geometric-average options, Bermudan max-call options up to 5000 dimensions, basket options, and a path-dependent derivative. Most lower-dimensional results are compared with binomial-tree or literature reference values.

Significance. If the numerical claims hold, this is a useful contribution: it offers a single-objective, non-recursive training formulation, avoids the temporal recursion of earlier deep optimal stopping algorithms, and shows empirically stable pricing in hundreds of dimensions. The theoretical lemmas are clearly proved, and the low-bias caveat is stated explicitly. The lower-dimensional comparisons against Longstaff-Schwartz, Andersen-Broadie, Broadie-Cao, and other literature benchmarks are genuine strengths. However, the headline high-dimensional claim rests on the d=5000 max-call experiment whose reference value is generated by the algorithm itself; without an independent upper bound or benchmark, the accuracy in high dimension is not established.

major comments (3)
  1. [§4.4.1.2, Table 8] The reference value 165.430 is not independent: the text states that the exact value of the price (120) has been replaced by a realisation of P with M=6000. Consequently, the relative errors in Table 8 and Figure 1 compare the algorithm to another run of itself and measure training stability, not proximity to the true optimal stopping value. Moreover, the 95% confidence interval for that reference is [165.378, 165.483], so the reported errors below 10^-3 are within the Monte Carlo noise of the reference. The row M=750 (103.764) also shows that training can stall in poor local optima, so a single self-referential baseline cannot certify reliability. This is load-bearing because the abstract and introduction claim effectiveness in 5000 dimensions.
  2. [§2.7, Eq. (48)] Since the paper only establishes a lower bound and no dual upper bound or other independent bound is provided for d=5000, the numerical evidence cannot rule out a substantial low bias. The authors should either compute a dual upper bound (for example, an Andersen-Broadie type bound) for the max-call example or clearly restrict the high-dimensional effectiveness claim to the validated lower-dimensional cases. This is fixable, but as it stands the central high-dimensional claim is not fully supported.
  3. [§2.4 and §3.2, Eq. (60)] The approximation power of the network class is an assumption rather than a theorem: no expressiveness or trainability result is given for the two-hidden-layer architecture of width d with the recursive factorisation (60). This is acceptable for a numerical paper only if independent benchmarks carry the validation. Since the main high-dimensional benchmark is self-referential, the high-dimensional claim remains conjectural. A convergence or approximation result, even for a simplified setting, or a broader set of independently benchmarked high-dimensional examples would strengthen the paper considerably.
minor comments (4)
  1. [§4.4.1.2, text after Table 8] The sentence 'the runtime in seconds need or calculating the realisation of P' contains a typo; it should read 'needed for calculating'. In addition, J0 appears as '2 20' and should be typeset as 2^20.
  2. [§2.6] The phrase 'under suitable hyptheses' contains a typo; it should read 'under suitable hypotheses'.
  3. [§4.4.1.1, Table 7] The table lists no reference values for d=10 to 500. The caption should state explicitly that these rows are unbenchmarked, so that readers do not mistake them for validated accuracy claims.
  4. [§4.1, Proposition 4.3 proof] The formula 'Itˆ o's formula' has a formatting artifact in the proof; it should be 'Itô's formula'. The same artifact appears in the text before equation (81).

Circularity Check

1 steps flagged · score 6.0 of 10

The d=5000 benchmark in §4.4.1.2 uses the algorithm's own M=6000 output as the reference value, so the reported relative approximation errors measure convergence to one self-generated realisation, not accuracy against the true optimal stopping value.

  1. fitted input called prediction [Section 4.4.1.2, Table 8 and Figure 1 (high-dimensional Bermudan max-call benchmark)]
    "In the approximative calculations of the relative approximation error the exact value of the price (120) has been replaced by the value 165.430, which corresponds to a realisation of P with M = 6000."

    The reference value used to define the relative approximation error is itself a realisation of P, the algorithm's own price estimator, at M=6000. Consequently the row M=6000 has relative error exactly 0, and the other rows report the distance of earlier training steps to that single later run. They do not measure the distance to the true optimal stopping price (120). Since (48) only ensures P is a lower bound and no dual upper bound is computed for d=5000, the table cannot substantiate the claimed accuracy; the reported tiny errors are forced by the choice of benchmark.

full rationale

The derivation of the algorithm in Sections 2–3 is mathematically self-contained: Lemma 2.2 gives a factorisation of stopping times, equation (60) defines the randomised stopping-time architecture, and the objective (39) is a direct relaxation of the optimal stopping supremum. None of these steps reduces to its own conclusion. The lower-bound property (48) is correctly stated. The validation examples with one-dimensional representations (Subsections 4.3.1–4.3.2) use independent binomial-tree references from Smirnov's website or closed-form results, and the low-dimensional max-call benchmarks in §4.4.1.1 cite external confidence intervals from Andersen–Broadie and Broadie–Cao, so those comparisons are not circular. The problematic step is confined to the 5000-dimensional example in §4.4.1.2, where the 'reference value' 165.430 is a realisation of the algorithm's own output P with M=6000. The reported relative error at M=6000 is 0 by construction, and the non-monotone training behaviour (e.g., M=750 gives 103.764 while M=500 gives 156.038) shows that a single self-generated reference is fragile as evidence of accuracy. Because the paper's headline high-dimensional effectiveness claim leans heavily on this table, the circularity is partial but real. There is no load-bearing self-citation or imported uniqueness theorem; the issue is a self-referential numerical benchmark.

Assumptions & free parameters 3 free parameters · 4 assumptions · 0 invented entities

The algorithm introduces no new physical or mathematical entities, but it relies on several unproved modelling and optimisation assumptions: Markovian structure, a specific neural network class, hand-chosen hyperparameters, and convergence of stochastic gradient ascent. These are the main sources of uncertainty in the central claim.

free parameters (3)
  • learning rate schedule = piecewise constant, e.g., 5e-2, 5e-3, 5e-4
    The learning rate is chosen by hand and varied per example; it is a tuning parameter that affects convergence and accuracy.
  • network width and depth = two hidden layers of width d
    The architecture is chosen ad hoc and is assumed sufficient for the tested problems; no systematic justification is given.
  • number of training steps M = varies from 500 to 6000 per example
    M is chosen manually per example and directly controls runtime and accuracy.
assumptions (4)
  • domain assumption The underlying process is Markovian after time discretisation.
    The stopping time factors in (29) depend only on the current state, relying on the Markov property stated in Subsection 2.4.
  • domain assumption The Euler-Maruyama discretisation accurately approximates the continuous-time optimal stopping problem.
    Equation (7) approximates the continuous-time stopping problem by a discrete-time problem, but no discretisation error bound is provided for the stopping problem.
  • ad hoc to paper The chosen neural network class can approximate the optimal stopping rule well enough.
    Expressiveness and trainability of the specific architecture are assumed without proof; the paper appeals to numerical evidence instead.
  • domain assumption Stochastic gradient ascent with Adam converges to a good local maximum of the objective.
    The training success is inferred from numerical results, not from a convergence theorem for the non-concave objective.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Solving high-dimensional optimal stopping problems using deep learning." pith.science (2026). https://pith.science/paper/AYI6HYED

@misc{pith2026190801602,
  author       = {Pith},
  title        = {Pith review of: Solving high-dimensional optimal stopping problems using deep learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/AYI6HYED}},
  note         = {Machine review of arXiv:1908.01602}
}
read the original abstract

Nowadays many financial derivatives, such as American or Bermudan options, are of early exercise type. Often the pricing of early exercise options gives rise to high-dimensional optimal stopping problems, since the dimension corresponds to the number of underlying assets. High-dimensional optimal stopping problems are, however, notoriously difficult to solve due to the well-known curse of dimensionality. In this work, we propose an algorithm for solving such problems, which is based on deep learning and computes, in the context of early exercise option pricing, both approximations of an optimal exercise strategy and the price of the considered option. The proposed algorithm can also be applied to optimal stopping problems that arise in other areas where the underlying stochastic process can be efficiently simulated. We present numerical results for a large number of example problems, which include the pricing of many high-dimensional American and Bermudan options, such as Bermudan max-call options in up to 5000 dimensions. Most of the obtained results are compared to reference values computed by exploiting the specific problem design or, where available, to reference values from the literature. These numerical results suggest that the proposed algorithm is highly effective in the case of many underlyings, in terms of both accuracy and speed.

Figures

Figures reproduced from arXiv: 1908.01602 by the authors.

Figure 1
Figure 1. Plot of a realisation of the relative approximation error [PITH_FULL_IMAGE:figures/full_fig_p031_1.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 2 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Deep neural network approximations for Monte Carlo algorithms

    math.NA 2019-08 conditional novelty 6.0 of 10

    A general theorem shows that neural networks inherit the absence of the curse of dimensionality from any discrete Monte Carlo scheme they can emulate, with applications to Kolmogorov PDEs.

  2. Space-time error estimates for deep neural network approximations for differential equations

    math.NA 2019-08 accept novelty 6.0 of 10

    The paper proves the first space-time error estimates for deep ReLU network approximations of Euler approximations of perturbed differential equations.

Reference graph

Works this paper leans on

91 extracted references · 72 canonical work pages · cited by 2 Pith papers

  1. [1]

    American options: a comparison of numerical methods

    AitSahlia, F., and Carr, P. American options: a comparison of numerical methods. In Numerical methods in finance, vol. 13 of Publ. Newton Inst. Cambridge Univ. Press, Cambridge, 1997, pp. 67–87

  2. [2]

    A simple approach to the pricing of bermudan swaptions in the multi-factor libor market model

    Andersen, L. A simple approach to the pricing of bermudan swaptions in the multi-factor libor market model. Journal of Computational Finance 3 , 2 (2000), 5–32

  3. [3]

    Primal-dual simulation algorithm for pricing multidimensional american options

    Andersen, L., and Broadie, M. Primal-dual simulation algorithm for pricing multidimensional american options. Management Science 50 , 9 (2004), 1222–1234

  4. [4]

    Error analysis of the optimal quantization algorithm for obstacle problems

    Bally, V., and Pag`es, G. Error analysis of the optimal quantization algorithm for obstacle problems. Stochastic Process. Appl. 106, 1 (2003), 1–40

  5. [5]

    Numerical valuation of high dimensional multivariate american securities

    Barraquand, J., and Martineau, D. Numerical valuation of high dimensional multivariate american securities. The Journal of Financial and Quantitative Analysis 30, 3 (1995), 383–405. 36

  6. [6]

    Barron, A. R. Universal approximation bounds for superpositions of a sigmoidal function. IEEE Trans. Inform. Theory 39 , 3 (1993), 930–945

  7. [7]

    Implied stopping rules for American basket options from Markovian projection

    Bayer, C., H¨app¨ol¨a, J., and Tempone, R. Implied stopping rules for American basket options from Markovian projection. Quant. Finance 19 , 3 (2019), 371–390

  8. [8]

    Pricing American Options by Exercise Rate Optimization

    Bayer, C., Tempone, R., and Wolfers, S. Pricing American Options by Exercise Rate Optimization. arXiv:1809.07300 (2018), 15 pages

Show all 91 references
  1. [9]

    Deep optimal stopping

    Becker, S., Cheridito, P., and Jentzen, A. Deep optimal stopping. arXiv:1804.05394 (2018), 24 pages

  2. [10]

    Dynamic programming

    Bellman, R. Dynamic programming. Science 153, 3731 (1966), 34–37

  3. [11]

    On the rates of convergence of simulation-based optimization algorithms for optimal stopping problems

    Belomestny, D. On the rates of convergence of simulation-based optimization algorithms for optimal stopping problems. Ann. Appl. Probab. 21, 1 (2011), 215–239

  4. [12]

    Pricing Bermudan options by nonparametric regression: optimal rates of convergence for lower estimates

    Belomestny, D. Pricing Bermudan options by nonparametric regression: optimal rates of convergence for lower estimates. Finance Stoch. 15, 4 (2011), 655–683

  5. [13]

    Solving optimal stopping problems via empirical dual optimiza- tion

    Belomestny, D. Solving optimal stopping problems via empirical dual optimiza- tion. Ann. Appl. Probab. 23 , 5 (2013), 1988–2019

  6. [14]

    True upper bounds for Bermudan products via non-nested Monte Carlo

    Belomestny, D., Bender, C., and Schoenmakers, J. True upper bounds for Bermudan products via non-nested Monte Carlo. Math. Finance 19, 1 (2009), 53–71

  7. [15]

    Pricing Bermudan options via multilevel approximation methods

    Belomestny, D., Dickmann, F., and Nagapetyan, T. Pricing Bermudan options via multilevel approximation methods. SIAM J. Financial Math. 6 , 1 (2015), 448–466

  8. [16]

    Multilevel simu- lation based policy iteration for optimal stopping—convergence and complexity

    Belomestny, D., Ladkau, M., and Schoenmakers, J. Multilevel simu- lation based policy iteration for optimal stopping—convergence and complexity. SIAM/ASA J. Uncertain. Quantif. 3 , 1 (2015), 460–483

  9. [17]

    Multilevel dual ap- proach for pricing American style derivatives

    Belomestny, D., Schoenmakers, J., and Dickmann, F. Multilevel dual ap- proach for pricing American style derivatives. Finance Stoch. 17, 4 (2013), 717–742

  10. [18]

    Policy iteration for Ameri- can options: overview

    Bender, C., Kolodko, A., and Schoenmakers, J. Policy iteration for Ameri- can options: overview. Monte Carlo Methods Appl. 12 , 5-6 (2006), 347–362

  11. [19]

    Enhanced policy iteration for American options via scenario selection

    Bender, C., Kolodko, A., and Schoenmakers, J. Enhanced policy iteration for American options via scenario selection. Quant. Finance 8 , 2 (2008), 135–146

  12. [20]

    A primal-dual algorithm for BSDES

    Bender, C., Schweizer, N., and Zhuo, J. A primal-dual algorithm for BSDES. Math. Finance 27 , 3 (2017), 866–901

  13. [21]

    J., and Schumacher, J

    Berridge, S. J., and Schumacher, J. M. An irregular grid approach for pricing high-dimensional American options. J. Comput. Appl. Math. 222 , 1 (2008), 94–111

  14. [22]

    Discrete-time approximation and Monte-Carlo simulation of backward stochastic differential equations

    Bouchard, B., and Touzi, N. Discrete-time approximation and Monte-Carlo simulation of backward stochastic differential equations. Stochastic Process. Appl. 111, 2 (2004), 175–206

  15. [23]

    Improved lower and upper bound algorithms for pricing American options by simulation

    Broadie, M., and Cao, M. Improved lower and upper bound algorithms for pricing American options by simulation. Quant. Finance 8 , 8 (2008), 845–861. 37

  16. [24]

    Pricing American-style securities using sim- ulation

    Broadie, M., and Glasserman, P. Pricing American-style securities using sim- ulation. J. Econom. Dynam. Control 21 , 8-9 (1997), 1323–1352. Computational financial modelling

  17. [25]

    A stochastic mesh method for pricing high- dimensional American options

    Broadie, M., and Glasserman, P. A stochastic mesh method for pricing high- dimensional American options. J. Comp. Fin. 7 , 4 (2004), 35–72

  18. [26]

    Pricing American options by sim- ulation using a stochastic mesh with optimized weights

    Broadie, M., Glasserman, P., and Ha, Z. Pricing American options by sim- ulation using a stochastic mesh with optimized weights. In Probabilistic constrained optimization, vol. 49 of Nonconvex Optim. Appl. Kluwer Acad. Publ., Dordrecht, 2000, pp. 26–44

  19. [27]

    Carriere, J. F. Valuation of the early-exercise price for options using simulations and nonparametric regression. Insurance Math. Econom. 19 , 1 (1996), 19–30

  20. [28]

    Additive and multiplicative duals for American option pricing

    Chen, N., and Glasserman, P. Additive and multiplicative duals for American option pricing. Finance Stoch. 11, 2 (2007), 153–179

  21. [29]

    A method for pricing American options using semi-infinite linear programming

    Christensen, S. A method for pricing American options using semi-infinite linear programming. Math. Finance 24 , 1 (2014), 156–172

  22. [30]

    Computing stable numerical solutions for multidimensional American option pricing problems: a semi- discretization approach

    Company, R., Egorova, V., J´odar, L., and Soleymani, F. Computing stable numerical solutions for multidimensional American option pricing problems: a semi- discretization approach. arXiv:1701.08545 (2017), 16 pages

  23. [31]

    Approximation by superpositions of a sigmoidal function

    Cybenko, G. Approximation by superpositions of a sigmoidal function. Math. Control Signals Systems 2 , 4 (1989), 303–314

  24. [32]

    Stochastic equations in infinite dimensions , vol

    Da Prato, G., and Zabczyk, J. Stochastic equations in infinite dimensions , vol. 44 of Encyclopedia of Mathematics and its Applications . Cambridge University Press, Cambridge, 1992

  25. [33]

    Davis, M. H. A., and Karatzas, I.A deterministic approach to optimal stopping. In Probability, statistics and optimisation, Wiley Ser. Probab. Math. Statist. Probab. Math. Statist. Wiley, Chichester, 1994, pp. 455–466

  26. [34]

    V., Farias, V

    Desai, V. V., Farias, V. F., and Moallemi, C. C. Pathwise optimization for optimal stopping problems. Management Science 58 , 12 (2012), 2292–2308

  27. [35]

    Deep learning-based numerical methods for high-dimensional parabolic partial differential equations and backward stochastic dif- ferential equations

    E, W., Han, J., and Jentzen, A. Deep learning-based numerical methods for high-dimensional parabolic partial differential equations and backward stochastic dif- ferential equations. Commun. Math. Stat. 5 , 4 (2017), 349–380

  28. [36]

    Monte Carlo algorithms for optimal stopping and statistical learning

    Egloff, D. Monte Carlo algorithms for optimal stopping and statistical learning. Ann. Appl. Probab. 15 , 2 (2005), 1396–1432

  29. [37]

    A dynamic look-ahead Monte Carlo algorithm for pricing Bermudan options

    Egloff, D., Kohler, M., and Todorovic, N. A dynamic look-ahead Monte Carlo algorithm for pricing Bermudan options. Ann. Appl. Probab. 17 , 4 (2007), 1138–1171

  30. [38]

    Ferguson, T. S. Optimal Stopping and Applications: Chapter 1. Stopping Rule Problems. Mathematics Department, UCLA, available online athttps://www.math. ucla.edu/~tom/Stopping/sr1.pdf, last accessed on August 7, 2019. 38

  31. [39]

    Firth, N. P. High dimensional American options. PhD thesis, Univer- sity of Oxford, 2005, available online at https://ora.ox.ac.uk/objects/uuid: dd46853a-35a1-44a3-a6a4-e39e13bfe78c , last accessed on August 7, 2019

  32. [40]

    Asymptotic Expansion as Prior Knowledge in Deep Learning Method for High dimensional BSDEs

    Fujii, M., Takahashi, A., and Takahashi, M. Asymptotic Expansion as Prior Knowledge in Deep Learning Method for High dimensional BSDEs. Asia-Pacific Financial Markets (2019)

  33. [41]

    Convergence and biases of Monte Carlo estimates of American option prices using a parametric exercise rule

    Garc´ıa, D. Convergence and biases of Monte Carlo estimates of American option prices using a parametric exercise rule. J. Econom. Dynam. Control 27 , 10 (2003), 1855–1879

  34. [42]

    Monte Carlo methods in financial engineering , vol

    Glasserman, P. Monte Carlo methods in financial engineering , vol. 53 of Appli- cations of Mathematics (New York) . Springer-Verlag, New York, 2004. Stochastic Modelling and Applied Probability

  35. [43]

    Understanding the difficulty of training deep feed- forward neural networks

    Glorot, X., and Bengio, Y. Understanding the difficulty of training deep feed- forward neural networks. In Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics (Chia Laguna Resort, Sardinia, Italy, 13–15 May 2010), Y. W. Teh and M. Titt...

  36. [44]

    A regression-based Monte Carlo method to solve backward stochastic differential equations

    Gobet, E., Lemor, J.-P., and Warin, X. A regression-based Monte Carlo method to solve backward stochastic differential equations. Ann. Appl. Probab. 15 , 3 (2005), 2172–2202

  37. [45]

    A., and Chen, Y

    Goldberg, D. A., and Chen, Y. Beating the curse of dimensionality in options pricing and optimal stopping. arXiv:1807.02227 (2018), 62 pages

  38. [46]

    Machine Learning for Pricing American Options in High Dimension

    Gouden`ege, L., Molent, A., and Zanette, A. Machine Learning for Pricing American Options in High Dimension. arXiv:1903.11275 (2019), 11 pages

  39. [47]

    Nonlinear option pricing

    Guyon, J., and Henry-Labord `ere, P. Nonlinear option pricing . Chapman & Hall/CRC Financial Mathematics Series. CRC Press, Boca Raton, FL, 2014

  40. [48]

    Solving high-dimensional partial differential equations using deep learning

    Han, J., Jentzen, A., and E, W. Solving high-dimensional partial differential equations using deep learning. Proc. Natl. Acad. Sci. USA 115, 34 (2018), 8505–8510

  41. [49]

    B., and Kogan, L

    Haugh, M. B., and Kogan, L. Pricing American options: a duality approach. Oper. Res. 52, 2 (2004), 258–270

  42. [50]

    Neural Networks 2 , 5 (1989), 359 – 366

    Hornik, K., Stinchcombe, M., and White, H.Multilayer feedforward networks are universal approximators. Neural Networks 2 , 5 (1989), 359 – 366

  43. [51]

    Batch normalization: accelerating deep network train- ing by reducing internal covariate shift

    Ioffe, S., and Szegedy, C. Batch normalization: accelerating deep network train- ing by reducing internal covariate shift . Proceedings of The 32nd International Con- ference on Machine Learning (ICML), June 2015

  44. [52]

    Jain, S., and Oosterlee, C. W. Pricing high-dimensional Bermudan options using the stochastic grid method. Int. J. Comput. Math. 89 , 9 (2012), 1186–1211

  45. [53]

    The duality of optimal exercise and domineering claims: a Doob- Meyer decomposition approach to the Snell envelope

    Jamshidian, F. The duality of optimal exercise and domineering claims: a Doob- Meyer decomposition approach to the Snell envelope. Stochastics 79 , 1-2 (2007), 27–60. 39

  46. [54]

    Strong convergence for explicit space-time discrete numerical approximation methods for stochastic Burgers equa- tions

    Jentzen, A., Salimova, D., and Welti, T. Strong convergence for explicit space-time discrete numerical approximation methods for stochastic Burgers equa- tions. arXiv:1710.07123 (2017), 60 pages. Published in J. Math. Anal. Appl

  47. [55]

    R., and Powell, W

    Jiang, D. R., and Powell, W. B. An approximate dynamic programming algo- rithm for monotone value functions. Oper. Res. 63, 6 (2015), 1489–1511

  48. [56]

    Option Pricing

    Kallsen, J. Option Pricing. Springer Berlin Heidelberg, Berlin, Heidelberg, 2009, pp. 599–613

  49. [57]

    Karatzas, I., and Shreve, S. E. Brownian motion and stochastic calculus , second ed., vol. 113 of Graduate Texts in Mathematics . Springer-Verlag, New York, 1991

  50. [58]

    Adam: a method for stochastic optimization

    Kingma, D., and Ba, J. Adam: a method for stochastic optimization . Proceedings of the International Conference on Learning Representations (ICLR), 2015

  51. [59]

    Probability theory

    Klenke, A. Probability theory. Universitext. Springer-Verlag London Ltd., London,

  52. [60]

    E., and Platen, E

    Kloeden, P. E., and Platen, E. Numerical solution of stochastic differential equations, vol. 23 of Applications of Mathematics (New York) . Springer-Verlag, Berlin, 1992

  53. [61]

    A regression-based smoothing spline Monte Carlo algorithm for pricing American options in discrete time

    Kohler, M. A regression-based smoothing spline Monte Carlo algorithm for pricing American options in discrete time. AStA Adv. Stat. Anal. 92 , 2 (2008), 153–178

  54. [62]

    A review on regression-based Monte Carlo methods for pricing Amer- ican options

    Kohler, M. A review on regression-based Monte Carlo methods for pricing Amer- ican options. In Recent developments in applied probability and statistics . Physica, Heidelberg, 2010, pp. 37–58

  55. [63]

    Pricing of American options in discrete time using least squares estimates with complexity penalties

    Kohler, M., and Krzy˙zak, A. Pricing of American options in discrete time using least squares estimates with complexity penalties. J. Statist. Plann. Inference 142 , 8 (2012), 2289–2307

  56. [64]

    Pricing of high-dimensional American options by neural networks

    Kohler, M., Krzy ˙zak, A., and Todorovic, N. Pricing of high-dimensional American options by neural networks. Math. Finance 20 , 3 (2010), 383–410

  57. [65]

    Upper bounds for Bermudan options on Markovian data using nonparametric regression and a reduced number of nested Monte Carlo steps

    Kohler, M., Krzy˙zak, A., and Walk, H. Upper bounds for Bermudan options on Markovian data using nonparametric regression and a reduced number of nested Monte Carlo steps. Statist. Decisions 26 , 4 (2008), 275–288

  58. [66]

    Iterative construction of the optimal Bermudan stopping time

    Kolodko, A., and Schoenmakers, J. Iterative construction of the optimal Bermudan stopping time. Finance Stoch. 10, 1 (2006), 27–49

  59. [67]

    V., and Gusyatnikov, P

    Kulikov, A. V., and Gusyatnikov, P. P.Stopping times for fractional brownian motion. In Computational Management Science: State of the Art 2014 , R. J. Fonseca, G.-W. Weber, and J. Telhada, Eds., vol. 682 of Lecture Notes in Economics and Mathematical Systems. Springer Interna...

  60. [68]

    arXiv:1102.4666 (2011), 25 pages

    Labart, C., and Lelong, J.A Parallel Algorithm for solving BSDEs - Application to the pricing and hedging of American options. arXiv:1102.4666 (2011), 25 pages. Published in Monte Carlo Methods Appl. 40

  61. [69]

    Introduction to stochastic calculus applied to finance, second ed

    Lamberton, D., and Lapeyre, B. Introduction to stochastic calculus applied to finance, second ed. Chapman & Hall/CRC Financial Mathematics Series. Chapman & Hall/CRC, Boca Raton, FL, 2008

  62. [70]

    Neural network regression for Bermudan option pricing

    Lapeyre, B., and Lelong, J. Neural network regression for Bermudan option pricing. arXiv:1907.06474 (2019), 15 pages

  63. [71]

    Pricing American options using martingale bases

    Lelong, J. Pricing American options using martingale bases. arXiv:1604.03317 (2016), 25 pages

  64. [72]

    Pricing path-dependent Bermudan options using Wiener chaos expan- sion: an embarrassingly parallel approach

    Lelong, J. Pricing path-dependent Bermudan options using Wiener chaos expan- sion: an embarrassingly parallel approach. arXiv:1901.05672 (2019), 23 pages

  65. [73]

    A., and Schwartz, E

    Longstaff, F. A., and Schwartz, E. S. Valuing American options by simula- tion: A simple least-squares approach. Rev. Fin. Stud. 14 , 1 (2001), 113–147

  66. [74]

    W.A fast and accurate FFT-based method for pricing early-exercise options under L´ evy processes.SIAM J

    Lord, R., Fang, F., Bervoets, F., and Oosterlee, C. W.A fast and accurate FFT-based method for pricing early-exercise options under L´ evy processes.SIAM J. Sci. Comput. 30 , 4 (2008), 1678–1705

  67. [75]

    Continuous Markov processes and stochastic equations.Rend

    Maruyama, G. Continuous Markov processes and stochastic equations.Rend. Circ. Mat. Palermo (2) 4 (1955), 48–90

  68. [76]

    Optimal stopping and free-boundary problems

    Peskir, G., and Shiryaev, A. Optimal stopping and free-boundary problems . Lectures in Mathematics ETH Z¨ urich. Birkh¨ auser Verlag, Basel, 2006

  69. [77]

    Rogers, L. C. G. Monte Carlo valuation of American options. Math. Finance 12, 3 (2002), 271–286

  70. [78]

    Rogers, L. C. G. Dual valuation and hedging of Bermudan options. SIAM J. Financial Math. 1 , 1 (2010), 604–608

  71. [79]

    Optimal dual martingales, their analysis, and application to new algorithms for Bermudan products

    Schoenmakers, J., Zhang, J., and Huang, J. Optimal dual martingales, their analysis, and application to new algorithms for Bermudan products. SIAM J. Fi- nancial Math. 4 , 1 (2013), 86–116

  72. [80]

    On Bermudan options

    Schweizer, M. On Bermudan options. In Advances in finance and stochastics . Springer, Berlin, 2002, pp. 257–270

  73. [81]

    Shreve, S. E. Stochastic calculus for finance. II. Springer Finance. Springer-Verlag, New York, 2004. Continuous-time models

  74. [82]

    arXiv:1708.07469 (2017), 7 pages

    Sirignano, J., and Spiliopoulos, K.DGM: A deep learning algorithm for solving partial differential equations. arXiv:1708.07469 (2017), 7 pages

  75. [83]

    Stochastic gradient descent in continuous time

    Sirignano, J., and Spiliopoulos, K. Stochastic gradient descent in continuous time. SIAM J. Financial Math. 8 , 1 (2017), 933–961

  76. [84]

    DGM: a deep learning algorithm for solving partial differential equations

    Sirignano, J., and Spiliopoulos, K. DGM: a deep learning algorithm for solving partial differential equations. J. Comput. Phys. 375 (2018), 1339–1364

  77. [85]

    Javascript options and implied volatility calculator

    Smirnov, M. Javascript options and implied volatility calculator. http://www. math.columbia.edu/~smirnov/options13.html. Columbia University. Last ac- cessed on August 7, 2019. 41

  78. [86]

    Random Stopping Times in Stopping Problems and Stopping Games

    Solan, E., Tsirelson, B., and Vieille, N. Random Stopping Times in Stopping Problems and Stopping Games. arXiv:1211.5802 (2012), 21 pages

  79. [87]

    Tilley, J. A. Valuing american options in a path simulation model. Transactions of the Society of Actuaries 45 (1993), 83–104

  80. [88]

    N., and Van Roy, B

    Tsitsiklis, J. N., and Van Roy, B. Optimal stopping of Markov processes: Hilbert space theory, approximation algorithms, and an application to pricing high- dimensional financial derivatives.IEEE Trans. Automat. Control 44, 10 (1999), 1840– 1851

  81. [89]

    N., and Van Roy, B

    Tsitsiklis, J. N., and Van Roy, B. Regression methods for pricing complex American-style options. IEEE Transactions on Neural Networks 12 , 4 (2001), 694– 703

  82. [90]

    Deep Learning- Based BSDE Solver for Libor Market Model with Application to Bermudan Swaption Pricing and Hedging

    Wang, H., Chen, H., Sudjianto, A., Liu, R., and Shen, Q. Deep Learning- Based BSDE Solver for Libor Market Model with Application to Bermudan Swaption Pricing and Hedging. arXiv:1807.06622 (2018), 36 pages. 42

  83. [2008]

    A comprehensive course, Translated from the 2006 German original

Pith tools

Reviewed August 14, 2026 · model on record in the stance chip above.