Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a221e5f4884e2407

Jump to content

// Workers AI · dad joke modeWhat did the binomial options pricing model say? "I've got a binary decision to make.

From Wikipedia, the free encyclopedia
(Redirected from BOPM)

In finance, the binomial options pricing model is a lattice-based numerical method for valuing options. It represents possible prices of the underlying instrument on a discrete-time binomial tree and values the option by backward induction. Because exercise decisions can be evaluated at individual nodes, the method is particularly useful for American and Bermudan options.[1][2]

William F. Sharpe presented a binomial option-pricing procedure in the 1978 edition of Investments.[3] John Cox, Stephen Ross and Mark Rubinstein published a widely used formulation in 1979, and Richard Rendleman Jr. and Brit Bartter published a separate two-state formulation in the same year.[1][2]

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

Use of the model

[edit source]

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 higher in computational complexity and 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 could be less practical due to several difficulties, and Monte Carlo option models are commonly used instead. Monte Carlo simulation is also less susceptible to sampling errors, since binomial techniques use discrete time units. This becomes more true the smaller the discrete units become.

In a non-recombinant binomial tree, in which paths moving in opposite directions do not merge, resulting in unique nodes for every sequence of price changes, the worst-case runtime of BOPM would be O(2n), where n is the number of time steps in the simulation. Monte Carlo simulation generally has a polynomial time complexity, and would be faster for large numbers of simulation steps, while when simulating a small number of time steps, Monte Carlo simulation would be more computationally intensive than BOPM (cf. Monte Carlo methods in finance). However, in a standard recombinant tree, a down move followed by an up move reaches the same node as an up move followed by a down move. An N-step tree therefore has distinct nodes, so straightforward backward induction has quadratic rather than exponential computational complexity.[4]

Method

[edit source]
Binomial Lattice with CRR formulae
Binomial Lattice with CRR formulae

Incorrect code, p[i] is overwritten used in calculation p[i-1], introduce another temp vector to save

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 * exp(-q * deltaT) - exp(-r * deltaT)) / (up^2 - 1);
  p1 := exp(-r * deltaT) - p0;
  ' initial values at time T
  for i := 0 to n {
      p[i] := K - S * up^(2*i - n+1);
      if p[i] < 0 then p[i] := 0;
  }
  ' move to earlier times
  for 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

[edit source]

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 (fixed) 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.[5][6]


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

[edit source]

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 [ (Sn K), 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

[edit source]

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 (fixed) 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. For European options in particular, it has been shown that the general binomial-lattice valuation model cannot be represented by a single hypergeometric closed-form expression.[7]

Relationship with Black–Scholes

[edit source]

Similar assumptions underpin both the binomial model and the Black–Scholes-Merton model. Under the Cox–Ross–Rubinstein specification with constant interest rate, dividend yield and volatility, the binomial tree is a discrete time approximation to the geometric Brownian motion used in the Black–Scholes–Merton model. The binomial model assumes that movements in the price follow a binomial distribution; as the number of time steps increases, the distribution of the logarithm of the underlying price approaches a normal distribution and the underlying price approaches a log-normal distribution. Consequently, the value of a European option calculated with the binomial model converges to its Black–Scholes–Merton value.[5][6]

Convergence need not be monotonic: calculated prices can oscillate as the number of time steps changes, and convergence speed depends on the chosen tree specification and implementation.[5]

When viewed as a numerical procedure, the CRR method can also be interpreted as a special case of the explicit finite difference method for the Black–Scholes partial differential equation; see finite difference methods for option pricing.[8]

See also

[edit source]

References

[edit source]
  1. 1 2 Cox, John C.; Ross, Stephen A.; Rubinstein, Mark (1979). "Option pricing: A simplified approach". Journal of Financial Economics. 7 (3): 229–263. doi:10.1016/0304-405X(79)90015-1.
  2. 1 2 Rendleman, Richard J. Jr.; Bartter, Brit J. (December 1979). "Two-State Option Pricing". The Journal of Finance. 34 (5): 1093–1110. doi:10.1111/j.1540-6261.1979.tb00058.x. JSTOR 2327237.
  3. Sharpe, William F. "Biographical". NobelPrize.org. Nobel Prize Outreach. Retrieved 24 July 2026.
  4. Gerbessiotis, Alexandros V. (2004). "Architecture independent parallel binomial tree option price valuations". Parallel Computing. 30 (2): 301–316. doi:10.1016/j.parco.2003.09.003.
  5. 1 2 3 Joshi, Mark S. (2009). "The convergence of binomial trees for pricing the American put". The Journal of Risk. 11 (4): 87–108. doi:10.21314/JOR.2009.197.
  6. 1 2 Chance, Don M. (2008). "A Synthesis of Binomial Option Pricing Models for Lognormally Distributed Assets". Journal of Applied Finance. 18 (1): 38–56. SSRN 969834.
  7. Georgiadis, Evangelos (2011). "Binomial options pricing has no closed-form solution". Algorithmic Finance. 1 (1). IOS Press: 11–18. doi:10.3233/AF-2011-003.
  8. Rubinstein, Mark (2000). "On the Relation Between Binomial and Trinomial Option Pricing Models". The Journal of Derivatives. 8 (2): 47–50. doi:10.3905/jod.2000.319149.
[edit source]