NAG Library Routine Document
S30JAF
1 Purpose
S30JAF computes the European option price using the Merton jump-diffusion model.
2 Specification
SUBROUTINE S30JAF ( |
CALPUT, M, N, X, S, T, SIGMA, R, LAMBDA, JVOL, P, LDP, IFAIL) |
INTEGER |
M, N, LDP, IFAIL |
REAL (KIND=nag_wp) |
X(M), S, T(N), SIGMA, R, LAMBDA, JVOL, P(LDP,N) |
CHARACTER(1) |
CALPUT |
|
3 Description
S30JAF uses Merton's jump-diffusion model (
Merton (1976)) to compute the price of a European option. This assumes that the asset price is described by a Brownian motion with drift, as in the Black–Scholes–Merton case, together with a compound Poisson process to model the jumps. The corresponding stochastic differential equation is,
Here is the instantaneous expected return on the asset price, ; is the instantaneous variance of the return when the Poisson event does not occur; is a standard Brownian motion; is the independent Poisson process and where is the random variable change in the stock price if the Poisson event occurs and is the expectation operator over the random variable .
This leads to the following price for a European option (see
Haug (2007))
where
is the time to expiry;
is the strike price;
is the annual risk-free interest rate;
is the Black–Scholes–Merton option pricing formula for a European call (see
S30AAF).
where
is the total volatility including jumps;
is the expected number of jumps given as an average per year;
is the proportion of the total volatility due to jumps.
The value of a put is obtained by substituting the Black–Scholes–Merton put price for .
4 References
Haug E G (2007) The Complete Guide to Option Pricing Formulas (2nd Edition) McGraw-Hill
Merton R C (1976) Option pricing when underlying stock returns are discontinuous Journal of Financial Economics 3 125–144
5 Parameters
- 1: CALPUT – CHARACTER(1)Input
On entry: determines whether the option is a call or a put.
- A call. The holder has a right to buy.
- A put. The holder has a right to sell.
Constraint:
or .
- 2: M – INTEGERInput
On entry: the number of strike prices to be used.
Constraint:
.
- 3: N – INTEGERInput
On entry: the number of times to expiry to be used.
Constraint:
.
- 4: X(M) – REAL (KIND=nag_wp) arrayInput
On entry: must contain
, the th strike price, for .
Constraint:
, where , the safe range parameter, for .
- 5: S – REAL (KIND=nag_wp)Input
On entry: , the price of the underlying asset.
Constraint:
, where , the safe range parameter.
- 6: T(N) – REAL (KIND=nag_wp) arrayInput
On entry: must contain
, the th time, in years, to expiry, for .
Constraint:
, where , the safe range parameter, for .
- 7: SIGMA – REAL (KIND=nag_wp)Input
On entry: , the annual total volatility, including jumps.
Constraint:
.
- 8: R – REAL (KIND=nag_wp)Input
On entry: , the annual risk-free interest rate, continuously compounded. Note that a rate of 5% should be entered as 0.05.
Constraint:
.
- 9: LAMBDA – REAL (KIND=nag_wp)Input
On entry: , the number of expected jumps per year.
Constraint:
.
- 10: JVOL – REAL (KIND=nag_wp)Input
On entry: the proportion of the total volatility associated with jumps.
Constraint:
.
- 11: P(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
P contains the computed option prices.
- 12: LDP – INTEGERInput
On entry: the first dimension of the array
P as declared in the (sub)program from which S30JAF is called.
Constraint:
.
- 13: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
On entry, or .
On entry, .
On entry, .
On entry, or , where , the safe range parameter.
On entry, or , where , the safe range parameter.
On entry, , where , the safe range parameter.
On entry, .
On entry, .
On entry, .
On entry, or .
On entry, .
7 Accuracy
The accuracy of the output is dependent on the accuracy of the cumulative Normal distribution function,
, occurring in
. This is evaluated using a rational Chebyshev expansion, chosen so that the maximum relative error in the expansion is of the order of the
machine precision (see
S15ABF and
S15ADF). An accuracy close to
machine precision can generally be expected.
None.
9 Example
This example computes the price of a European call with jumps. The time to expiry is months, the stock price is and the strike price is . The number of jumps per year is and the percentage of the total volatility due to jumps is . The risk-free interest rate is per year and the total volatility is per year.
9.1 Program Text
Program Text (s30jafe.f90)
9.2 Program Data
Program Data (s30jafe.d)
9.3 Program Results
Program Results (s30jafe.r)