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:
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.
- The change of Δz during a sample period of time Δt is Δz=ϵ√Δt, where ϵ has a standardized normal distribution ϕ(0,1).
- 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:
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
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
Thus G also follows an Ito process, with a drift rate of ∂G∂xa+∂G∂t+12∂2G∂x2b2 and a variance rate of (∂G∂xb)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
using
Thus
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:
Its equivalent form is:
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.
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.