The Jump-Diffusion Model, proposed by Robert C. Merton in 1976, is an extension of the Black-Scholes model to incorporate jumps in stock prices. In this model, we assume that the stock price follows a jump-diffusion process which can be described by a stochastic differential equation (SDE) that combines a continuous diffusion process with a discrete jump process.
Let St denote the stock price at time t. The dynamics of St under the risk-neutral measure in the Jump-Diffusion model can be described by the following SDE:
dStβ=β(rβ
ββ
Ξ»k)Stdtβ
+β
ΟStdWtβ
+β
StdYt
where:
- r: the risk-free interest rate
- Ξ»: the intensity (average frequency) of jumps per year
- k: the expected return per jump (based on log-normal distribution)
- Ο: the annualized volatility of the stock price (vol(St))
- Wt: a standard Brownian motion
- Yt: a compound Poisson process with jumps that have a log-normal distribution with mean ΞΌJ and standard deviation ΟJ
The dynamics of St can be further decomposed into two components:
1. Continuous Process (Diffusion): The first two terms on the right-hand side of the SDE represent the classical Black-Scholes dynamics, with a drift term adjusted for the jump expectation, (rβ ββ Ξ»k)Stdt, and a diffusion term, ΟStdWt.
2. Jump Process (Discrete): The third term on the right-hand side of the SDE corresponds to the jump component, which is described by the product of the stock price, St, and the increment of the compound Poisson process, dYt.
To price European options using the Jump-Diffusion model, we can apply the risk-neutral valuation formula:
C(St,βt)β=βeβ
ββ
r(Tβ
ββ
t)πΌβ[(STβK)+],
where C(St,βt) denotes the price of a European call option at time t, K is the strike price, T is the time until expiration, and the expectation is taken under the risk-neutral probability measure β.
However, the classic Black-Scholes formula does not apply directly to the Jump-Diffusion model, as it assumes a log-normal distribution for stock prices. To compute the option price for a Jump-Diffusion model, we typically rely on numerical methods such as:
1. Fourier Transform methods (e.g., Carr-Madan Fast Fourier Transform (FFT) method)
2. Monte Carlo simulations
3. Finite-difference methods / Partial differential equation (PDE) methods
As an example, letβs consider the Fourier Transform method. Using jump-diffusion processes, the characteristic function Ο(u) of the log price logβST at time T can be derived as follows:
$$\begin{aligned}
\phi(u) &= \mathbb{E}^\mathbb{Q}\left[e^{iu\log S_T}\right] \\
&= \text{exp}\left\{iu\left(\log S_t + \left[r - \lambda k - \frac{\sigma^2}{2} \right](T-t)\right) \right.\\
&\qquad\left. - \frac{u^2 \sigma^2 (T-t)}{2} + \lambda(T-t)\left(e^{iu\mu_J - \frac{u^2 \sigma_J^2}{2}} -1\right)\right\}.\end{aligned}$$
Next, we can compute the option price using the inverse Fourier Transform or a Fast Fourier Transform as in the Carr-Madan approach.
In summary, the Jump-Diffusion model provides a more realistic representation of stock price dynamics by incorporating both continuous diffusion and discrete jump processes. This model can be used to price European options using various numerical methods, with the Fourier Transform method being one possible approach.