Binomial options pricing model

Last updated

In finance, the binomial options pricing model (BOPM) provides a generalizable numerical method for the valuation of options. Essentially, the model uses a "discrete-time" (lattice based) model of the varying price over time of the underlying financial instrument, addressing cases where the closed-form Black–Scholes formula is wanting.

Contents

The binomial model was first proposed by William Sharpe in the 1978 edition of Investments ( ISBN   013504605X), [1] and formalized by Cox, Ross and Rubinstein in 1979 [2] and by Rendleman and Bartter in that same year. [3]

For binomial trees as applied to fixed income and interest rate derivatives see Lattice model (finance) § Interest rate derivatives.

Use of the model

The Binomial options pricing model approach has been widely used since it is able to handle a variety of conditions for which other models cannot easily be applied. This is largely because the BOPM is based on the description of an underlying instrument over a period of time rather than a single point. As a consequence, it is used to value American options that are exercisable at any time in a given interval as well as Bermudan options that are exercisable at specific instances of time. Being relatively simple, the model is readily implementable in computer software (including a spreadsheet).

Although computationally slower than the Black–Scholes formula, it is more accurate, particularly for longer-dated options on securities with dividend payments. For these reasons, various versions of the binomial model are widely used by practitioners in the options markets.[ citation needed ]

For options with several sources of uncertainty (e.g., real options) and for options with complicated features (e.g., Asian options), binomial methods are less practical due to several difficulties, and Monte Carlo option models are commonly used instead. When simulating a small number of time steps Monte Carlo simulation will be more computationally time-consuming than BOPM (cf. Monte Carlo methods in finance). However, the worst-case runtime of BOPM will be O(2n), where n is the number of time steps in the simulation. Monte Carlo simulations will generally have a polynomial time complexity, and will be faster for large numbers of simulation steps. Monte Carlo simulations are also less susceptible to sampling errors, since binomial techniques use discrete time units. This becomes more true the smaller the discrete units become.

Method

Binomial Lattice with CRR formulae Arbre Binomial Options Reelles.png
Binomial Lattice with CRR formulae
function americanPut(T, S, K, r, sigma, q, n)  {    '  T... expiration time   '  S... stock price   '  K... strike price   '  r... interest rate   '  sigma... volatility of the stock price   '  q... dividend yield   '  n... height of the binomial tree   deltaT := T / n;   up := exp(sigma * sqrt(deltaT));   p0 := (up^2 * exp(-q * deltaT) - up * exp(-r * deltaT)) / (up^2 - 1);   p1 := exp(-r * deltaT) - p0;   ' initial values at time Tfor i := 0 to n {       p[i] := K - S * up^(2*i - n);       if p[i] < 0 then p[i] := 0;   }   ' move to earlier timesfor j := n-1 down to 0 {       for i := 0 to j {           ' binomial value           p[i] := p0 * p[i+1] + p1 * p[i];              ' exercise value           exercise := K - S * up^(2*i - j);             if p[i] < exercise then p[i] := exercise;       }   }   return americanPut := p[0]; }

The binomial pricing model traces the evolution of the option's key underlying variables in discrete-time. This is done by means of a binomial lattice (Tree), for a number of time steps between the valuation and expiration dates. Each node in the lattice represents a possible price of the underlying at a given point in time.

Valuation is performed iteratively, starting at each of the final nodes (those that may be reached at the time of expiration), and then working backwards through the tree towards the first node (valuation date). The value computed at each stage is the value of the option at that point in time.

Option valuation using this method is, as described, a three-step process:

  1. Price tree generation,
  2. Calculation of option value at each final node,
  3. Sequential calculation of the option value at each preceding node.

Step 1: Create the binomial price tree

The tree of prices is produced by working forward from valuation date to expiration.

At each step, it is assumed that the underlying instrument will move up or down by a specific factor ( or ) per step of the tree (where, by definition, and ). So, if is the current price, then in the next period the price will either be or .

The up and down factors are calculated using the underlying volatility, , and the time duration of a step, , measured in years (using the day count convention of the underlying instrument). From the condition that the variance of the log of the price is , we have:

Above is the original Cox, Ross, & Rubinstein (CRR) method; there are various other techniques for generating the lattice, such as "the equal probabilities" tree, see. [4] [5]

The CRR method ensures that the tree is recombinant, i.e. if the underlying asset moves up and then down (u,d), the price will be the same as if it had moved down and then up (d,u)—here the two paths merge or recombine. This property reduces the number of tree nodes, and thus accelerates the computation of the option price.

This property also allows the value of the underlying asset at each node to be calculated directly via formula, and does not require that the tree be built first. The node-value will be:

Where is the number of up ticks and is the number of down ticks.

Step 2: Find option value at each final node

At each final node of the tree—i.e. at expiration of the option—the option value is simply its intrinsic, or exercise, value:

Max [ (SnK), 0 ], for a call option
Max [ (KSn), 0 ], for a put option,

Where K is the strike price and is the spot price of the underlying asset at the nth period.

Step 3: Find option value at earlier nodes

Once the above step is complete, the option value is then found for each node, starting at the penultimate time step, and working back to the first node of the tree (the valuation date) where the calculated result is the value of the option.

In overview: the "binomial value" is found at each node, using the risk neutrality assumption; see Risk neutral valuation. If exercise is permitted at the node, then the model takes the greater of binomial and exercise value at the node.

The steps are as follows:

  1. Under the risk neutrality assumption, today's fair price of a derivative is equal to the expected value of its future payoff discounted by the risk free rate. Therefore, expected value is calculated using the option values from the later two nodes (Option up and Option down) weighted by their respective probabilities—"probability" p of an up move in the underlying, and "probability" (1−p) of a down move. The expected value is then discounted at r, the risk free rate corresponding to the life of the option.
    The following formula to compute the expectation value is applied at each node:
    , or
    where
    is the option's value for the node at time t,
    is chosen such that the related binomial distribution simulates the geometric Brownian motion of the underlying stock with parameters r and σ,
    q is the dividend yield of the underlying corresponding to the life of the option. It follows that in a risk-neutral world futures price should have an expected growth rate of zero and therefore we can consider for futures.
    Note that for p to be in the interval the following condition on has to be satisfied .
    (Note that the alternative valuation approach, arbitrage-free pricing, yields identical results; see “delta-hedging”.)
  2. This result is the "Binomial Value". It represents the fair price of the derivative at a particular point in time (i.e. at each node), given the evolution in the price of the underlying to that point. It is the value of the option if it were to be held—as opposed to exercised at that point.
  3. Depending on the style of the option, evaluate the possibility of early exercise at each node: if (1) the option can be exercised, and (2) the exercise value exceeds the Binomial Value, then (3) the value at the node is the exercise value.
    • For a European option, there is no option of early exercise, and the binomial value applies at all nodes.
    • For an American option, since the option may either be held or exercised prior to expiry, the value at each node is: Max (Binomial Value, Exercise Value).
    • For a Bermudan option, the value at nodes where early exercise is allowed is: Max (Binomial Value, Exercise Value); at nodes where early exercise is not allowed, only the binomial value applies.

In calculating the value at the next time step calculated—i.e. one step closer to valuation—the model must use the value selected here, for "Option up"/"Option down" as appropriate, in the formula at the node. The aside algorithm demonstrates the approach computing the price of an American put option, although is easily generalized for calls and for European and Bermudan options:

Relationship with Black–Scholes

Similar assumptions underpin both the binomial model and the Black–Scholes model, and the binomial model thus provides a discrete time approximation to the continuous process underlying the Black–Scholes model. The binomial model assumes that movements in the price follow a binomial distribution; for many trials, this binomial distribution approaches the log-normal distribution assumed by Black–Scholes. In this case then, for European options without dividends, the binomial model value converges on the Black–Scholes formula value as the number of time steps increases. [4] [5]

In addition, when analyzed as a numerical procedure, the CRR binomial method can be viewed as a special case of the explicit finite difference method for the Black–Scholes PDE; see finite difference methods for option pricing. [6]

See also

Related Research Articles

The Black–Scholes or Black–Scholes–Merton model is a mathematical model for the dynamics of a financial market containing derivative investment instruments, using various underlying assumptions. From the parabolic partial differential equation in the model, known as the Black–Scholes equation, one can deduce the Black–Scholes formula, which gives a theoretical estimate of the price of European-style options and shows that the option has a unique price given the risk of the security and its expected return. The equation and model are named after economists Fischer Black and Myron Scholes; Robert C. Merton, who first wrote an academic paper on the subject, is sometimes also credited.

The Black model is a variant of the Black–Scholes option pricing model. Its primary applications are for pricing options on future contracts, bond options, interest rate cap and floors, and swaptions. It was first presented in a paper written by Fischer Black in 1976.

In mathematical finance, the Greeks are the quantities representing the sensitivity of the price of a derivative instrument such as an option to changes in one or more underlying parameters on which the value of an instrument or portfolio of financial instruments is dependent. The name is used because the most common of these sensitivities are denoted by Greek letters. Collectively these have also been called the risk sensitivities, risk measures or hedge parameters.

In finance, moneyness is the relative position of the current price of an underlying asset with respect to the strike price of a derivative, most commonly a call option or a put option. Moneyness is firstly a three-fold classification:

A swaption is an option granting its owner the right but not the obligation to enter into an underlying swap. Although options can be traded on a variety of swaps, the term "swaption" typically refers to options on interest rate swaps.

Rational pricing is the assumption in financial economics that asset prices – and hence asset pricing models – will reflect the arbitrage-free price of the asset as any deviation from this price will be "arbitraged away". This assumption is useful in pricing fixed income securities, particularly bonds, and is fundamental to the pricing of derivative instruments.

Monte Carlo methods are used in corporate finance and mathematical finance to value and analyze (complex) instruments, portfolios and investments by simulating the various sources of uncertainty affecting their value, and then determining the distribution of their value over the range of resultant outcomes. This is usually done by help of stochastic asset models. The advantage of Monte Carlo methods over other techniques increases as the dimensions of the problem increase.

In finance, a bond option is an option to buy or sell a bond at a certain price on or before the option expiry date. These instruments are typically traded OTC.

In mathematical finance, a Monte Carlo option model uses Monte Carlo methods to calculate the value of an option with multiple sources of uncertainty or with complicated features. The first application to option pricing was by Phelim Boyle in 1977. In 1996, M. Broadie and P. Glasserman showed how to price Asian options by Monte Carlo. An important development was the introduction in 1996 by Carriere of Monte Carlo methods for options with early exercise features.

<span class="mw-page-title-main">Lattice model (finance)</span> Method for evaluating stock options that divides time into discrete intervals

In finance, a lattice model is a technique applied to the valuation of derivatives, where a discrete time model is required. For equity options, a typical example would be pricing an American option, where a decision as to option exercise is required at "all" times before and including maturity. A continuous model, on the other hand, such as Black–Scholes, would only allow for the valuation of European options, where exercise is on the option's maturity date. For interest rate derivatives lattices are additionally useful in that they address many of the issues encountered with continuous models, such as pull to par. The method is also used for valuing certain exotic options, where because of path dependence in the payoff, Monte Carlo methods for option pricing fail to account for optimal decisions to terminate the derivative by early exercise, though methods now exist for solving this problem.

In mathematics, the theory of optimal stopping or early stopping is concerned with the problem of choosing a time to take a particular action, in order to maximise an expected reward or minimise an expected cost. Optimal stopping problems can be found in areas of statistics, economics, and mathematical finance. A key example of an optimal stopping problem is the secretary problem. Optimal stopping problems can often be written in the form of a Bellman equation, and are therefore often solved using dynamic programming.

In finance, an option is a contract which conveys to its owner, the holder, the right, but not the obligation, to buy or sell a specific quantity of an underlying asset or instrument at a specified strike price on or before a specified date, depending on the style of the option. Options are typically acquired by purchase, as a form of compensation, or as part of a complex financial transaction. Thus, they are also a form of asset and have a valuation that may depend on a complex relationship between underlying asset price, time until expiration, market volatility, the risk-free rate of interest, and the strike price of the option. Options may be traded between private parties in over-the-counter (OTC) transactions, or they may be exchange-traded in live, public markets in the form of standardized contracts.

A local volatility model, in mathematical finance and financial engineering, is an option pricing model that treats volatility as a function of both the current asset level and of time . As such, it is a generalisation of the Black–Scholes model, where the volatility is a constant. Local volatility models are often compared with stochastic volatility models, where the instantaneous volatility is not just a function of the asset level but depends also on a new "global" randomness coming from an additional random component.

<span class="mw-page-title-main">Black–Scholes equation</span> Partial differential equation in mathematical finance

In mathematical finance, the Black–Scholes equation is a partial differential equation (PDE) governing the price evolution of derivatives under the Black–Scholes model. Broadly speaking, the term may refer to a similar PDE that can be derived for a variety of options, or more generally, derivatives.

The trinomial tree is a lattice-based computational model used in financial mathematics to price options. It was developed by Phelim Boyle in 1986. It is an extension of the binomial options pricing model, and is conceptually similar. It can also be shown that the approach is equivalent to the explicit finite difference method for option pricing. For fixed income and interest rate derivatives see Lattice model (finance)#Interest rate derivatives.

Finite difference methods for option pricing are numerical methods used in mathematical finance for the valuation of options. Finite difference methods were first applied to option pricing by Eduardo Schwartz in 1977.

The Vanna–Volga method is a mathematical tool used in finance. It is a technique for pricing first-generation exotic options in foreign exchange market (FX) derivatives.

The Korn–Kreer–Lenssen model is a discrete trinomial model proposed in 1998 by Ralf Korn, Markus Kreer and Mark Lenssen to model illiquid securities and to value financial derivatives on these. It generalizes the binomial Cox-Ross-Rubinstein model in a natural way as the stock in a given time interval can either rise one unit up, fall one unit down or remain unchanged. In contrast to Black–Scholes or Cox-Ross-Rubinstein model the market consisting of stock and cash is not complete yet. To value and replicate a financial derivative an additional traded security related to the original security needs to be added. This might be a Low Exercise Price Option. The mathematical proof of arbitrage free pricing is based on martingale representations for point processes pioneered in the 1980s and 1990 by Albert Shiryaev, Robert Liptser and Marc Yor.

The Datar–Mathews Method is a method for real options valuation. The method provides an easy way to determine the real option value of a project simply by using the average of positive outcomes for the project. The method can be understood as an extension of the net present value (NPV) multi-scenario Monte Carlo model with an adjustment for risk aversion and economic decision-making. The method uses information that arises naturally in a standard discounted cash flow (DCF), or NPV, project financial valuation. It was created in 2000 by Vinay Datar, professor at Seattle University; and Scott H. Mathews, Technical Fellow at The Boeing Company.

In finance, Black's approximation is an approximate method for computing the value of an American call option on a stock paying a single dividend. It was described by Fischer Black in 1975.

References

  1. William F. Sharpe, Biographical, nobelprize.org
  2. Cox, J. C.; Ross, S. A.; Rubinstein, M. (1979). "Option pricing: A simplified approach". Journal of Financial Economics . 7 (3): 229. CiteSeerX   10.1.1.379.7582 . doi:10.1016/0304-405X(79)90015-1.
  3. Richard J. Rendleman, Jr. and Brit J. Bartter. 1979. "Two-State Option Pricing". Journal of Finance 24: 1093-1110. doi : 10.2307/2327237
  4. 1 2 Mark s. Joshi (2008). The Convergence of Binomial Trees for Pricing the American Put
  5. 1 2 Chance, Don M. March 2008 A Synthesis of Binomial Option Pricing Models for Lognormally Distributed Assets Archived 2016-03-04 at the Wayback Machine . Journal of Applied Finance, Vol. 18
  6. Rubinstein, M. (2000). "On the Relation Between Binomial and Trinomial Option Pricing Models". Journal of Derivatives . 8 (2): 47–50. CiteSeerX   10.1.1.43.5394 . doi:10.3905/jod.2000.319149. S2CID   11743572. Archived from the original on June 22, 2007.