Slashdot Mirror


Gosper's Algorithm Meets Wall Street Formulas

peter.hill.1980 writes "Wall Street's money making formulas need to be as explicit as possible for efficiency purposes. An old, existing and famous formula — binomial options pricing formula — has now been scrutinized for theoretical optimality in a forthcoming paper by Evangelos Georgiadis of MIT using Gosper's Algorithm, proving that no general explicit or closed form expression exists for pricing."

6 of 124 comments (clear)

  1. Re:be an American by spiffmastercow · · Score: 4, Insightful

    Why do Americans across the country not simply not occupy Wall Street?

    Why have you been so effectively programmed to accept the shit you're fed?

    Not a statement against sound long-term investment, but against casino capitalism and cronyism.

    I come from a country which has experienced a revolution in my lifetime.

    Why can't you?

    Because we can't get the time off work..

  2. Re:Hurh? by mangu · · Score: 5, Funny

    It's very simple. What part of "We set a lower bound on the complexity of options pricing formulae in the lattice metric by proving that no general explicit or closed form (hypergeometric) expression for pricing vanilla European call and put options exists when employing the binomial lattice approach" you didn't understand?

  3. abstract text by PrinceAshitaka · · Score: 4, Funny

    This is the abstract used ( not really) to get teh funding grant for this research.

    Two fundamentally different but complementary transition metal catalyzed chemo-, regio-,diastereo-, enantio-, and grantproposalo-selective approaches to the synthesis of a library of biologically significant nano- and pico-molecules will be presented with the focus on reaction mechanism and egocentric effects. The role of the nature of the metal, ligand, solvent, temperature, time, microwave, nanowave, picowave, ultrasound, hypersound, moon phase, and weather in this catalytic, sustainable, cost-effective, and eco-friendly technology will be discussed in detail.

    --
    quis custodiet ipsos custodes
  4. Re:Hurh? by Anonymous Coward · · Score: 4, Informative

    I'm an analyst for a large financial firm, and this is actually old news for us soul-sellers. There is no good options pricing model; they all have problems.

    These articles should help clear things up:

    http://en.wikipedia.org/wiki/Binomial_options_pricing_model
    http://en.wikipedia.org/wiki/Black-Scholes
    http://en.wikipedia.org/wiki/Monte_Carlo_option_model

  5. Re:Hurh? by emurphy42 · · Score: 4, Informative

    To the Wikipedia-mobile, Geek Wonder!

    • Option, e.g. "I pay you $100 and you agree to (sell to me / buy from me) 1,000 shares of XYZ at a locked-in price of $50 apiece whenever I decide to exercise my option" (I may decide not to exercise it at all, and I may have a time limit)
    • Binomial options pricing model, a formula for how valuable an option is in practice
    • Closed-form expression, pertaining to a method that gets values out of a formula without resorting to brute-force approximation or other such PITA methods
    • Gosper's algorithm, pertaining to proving that there ain't no such method for this model
  6. The actual Deal, If anyone cares by cb123 · · Score: 4, Informative

    The naive CRR (Cox, Ross, Rubinstein) method for pricing options is O(n^2) where n is the number of levels in a recombinant binomial pricing lattice. That is, a lattice like a binary tree, but where you have cross links connecting nodes. The naive approach requires visiting each one of these nodes and hence O(n^2) and the error of the produced option goes down only proportional to the node spacing. For at least 15 years this problem has been converted to "linear time" (really the important relation is between the price error and the CPU time) by means of a variety of extrapolation methods (this began with Richardson extrapolation) using evaluation with two trees to get a much smaller error. There are in fact numerical methods that for special options can do slightly better than this. Broadie 1996 is one reference. While pretty fast and very easy to understand, there are yet faster methods using adaptive mesh crank-nicolson PDE solvers that do a bit better. Just a couple of years ago, Dai, et al. published a paper showing how to get linear time an entirely different approach involving combinatorial sums. This may have improved performance bounds for some exotic options, but did NOT do much for improving real-world implemented algorithmic performance of pricing the European and American options that are so commonly traded on exchanges, in the US and worldwide. So, at least for the most important class of options Dai et al was kind of a snoozer. The paper referenced in the summary above is entirely a follow-up paper to Dai, et al 2008. This new paper merely shows that there is no "short cut" in evaluating the relevant sums with hypergeometric functions, a kind of special function common in mathematical physics. So, in short, all this says is that the already "non fastest method" cannot be made faster by one numerical methods approach. It is certainly deserving of publication and dissemination, but changes the world not at all.