Black-Scholes Model

Overview

The Black-Scholes Model is a mathematical model for the dynamics of a financial market containing derivative investment instruments (from wikipedia).

This section explains the stochastic differential equation (stock price process) in continue form and in discrete form (used as stock price process). They are core part for option pricing.

Black-Scholes Model

The Continue form of Black-Scholes is:

dSt=μStdt+σStdz

where St is the stock price at time t. μ is the stock’s expected rate of return. σ is the volatility of the stock price. The random variable z follows Wiener process, i.e. z satisfies the following equation.

  1. The change of Δz during a sample period of time Δt is Δz=ϵΔt, where ϵ has a standardized normal distribution ϕ(0,1).
  2. The value of Δz for any two different short intervals of time, Δt, are independent.

It follows that Δz has a normal distribution with the mean of 0 and the variance of Δt.

The Discrete form of Black-Scholes is:

ΔSt=μStΔt+σStϵΔt=>ΔStSt=μΔt+σϵΔt

The left side of the equation is the return provided by the stock in a short period of time, Δt. The term μΔt is the expected value of this return, and the σϵΔt is the stochastic component of the return. It is easy to see that ΔStStϕ(μΔt,σ2Δt), i.e. the mean of ΔStSt is μΔt and the variance is σ2Δt.

Ito lemma and direct corollary

Suppose that the value of a variable x follows the Ito process

dx=a(x,t)dt+b(x,t)dz

where dz is a Wiener process and a and b are functions of x and t. The variable x has a drift rate of a and a variance rate of b2. Ito lemma shows that a function G(x,t) follows the process

dG=(Gxa+Gt+122Gx2b2)dt+Gxbdz.

Thus G also follows an Ito process, with a drift rate of Gxa+Gt+122Gx2b2 and a variance rate of (Gxb)2.

In stock price process a(x,t)=μS and b(x,t)=σS.

Corollary: lognormal property of S

Let us define G=lnS. With Ito lemma, we have

dG=(μσ22)dt+σdz,

using

GS=1S,2GS2=1S2,Gt=0.

Thus

lnSTlnS0ϕ[(μσ22)T,σ2T].

where ST is the stock price at a future time T, S0 is the stock price at time 0. In other words, ST has a lognormal distribution, which can take any value between 0 and +.

Implementation of B-S model

The discrete form of process for lnS is as:

lnS(t+Δt)lnS(t)=(μσ22)Δt+σϵΔt

Its equivalent form is:

S(t+Δt)=S(t)exp[(μσ22)Δt+σϵΔt]

The formula above is used to generate the path for S. In order to optimize the multiplication of S with adder operator in path pricer, in our implementation, the B-S path generator will fetch the normal random number ϵ from RNG sequence and output the lnS to path pricer.

impl of BS

Because there is accumulation of lnS, the initiation interval (II) cannot achieve 1. Here, change order between paths and steps. Because the input random number are totally independent, the change of order will not affect the accurate of the result. The pseudo-code is shown as follows.

Optimization of Algorithm