NAG Library Routine Document
S30JBF
1 Purpose
S30JBF computes the European option price together with its sensitivities (Greeks) using the Merton jump-diffusion model.
2 Specification
SUBROUTINE S30JBF ( |
CALPUT, M, N, X, S, T, SIGMA, R, LAMBDA, JVOL, P, LDP, DELTA, GAMMA, VEGA, THETA, RHO, VANNA, CHARM, SPEED, COLOUR, ZOMMA, VOMMA, IFAIL) |
INTEGER |
M, N, LDP, IFAIL |
REAL (KIND=nag_wp) |
X(M), S, T(N), SIGMA, R, LAMBDA, JVOL, P(LDP,N), DELTA(LDP,N), GAMMA(LDP,N), VEGA(LDP,N), THETA(LDP,N), RHO(LDP,N), VANNA(LDP,N), CHARM(LDP,N), SPEED(LDP,N), COLOUR(LDP,N), ZOMMA(LDP,N), VOMMA(LDP,N) |
CHARACTER(1) |
CALPUT |
|
3 Description
S30JBF uses Merton's jump-diffusion model (
Merton (1976)) to compute the price of a European option, together with the Greeks or sensitivities, which are the partial derivatives of the option price with respect to certain of the other input parameters. Merton's model 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 arrays
P,
DELTA,
GAMMA,
VEGA,
THETA,
RHO,
VANNA,
CHARM,
SPEED,
COLOUR,
ZOMMA and
VOMMA as declared in the (sub)program from which S30JBF is called.
Constraint:
.
- 13: DELTA(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
DELTA contains the sensitivity,
, of the option price to change in the price of the underlying asset.
- 14: GAMMA(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
GAMMA contains the sensitivity,
, of
DELTA to change in the price of the underlying asset.
- 15: VEGA(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
VEGA contains the sensitivity,
, of the option price to change in the volatility of the underlying asset.
- 16: THETA(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
THETA contains the sensitivity,
, of the option price to change in the time to expiry of the option.
- 17: RHO(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
RHO contains the sensitivity,
, of the option price to change in the annual risk-free interest rate.
- 18: VANNA(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
VANNA contains the sensitivity,
, of
VEGA to change in the price of the underlying asset or, equivalently, the sensitivity of
DELTA to change in the volatility of the asset price.
- 19: CHARM(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
CHARM contains the sensitivity,
, of
DELTA to change in the time to expiry of the option.
- 20: SPEED(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
SPEED contains the sensitivity,
, of
GAMMA to change in the price of the underlying asset.
- 21: COLOUR(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
COLOUR contains the sensitivity,
, of
GAMMA to change in the time to expiry of the option.
- 22: ZOMMA(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
ZOMMA contains the sensitivity,
, of
GAMMA to change in the volatility of the underlying asset.
- 23: VOMMA(LDP,N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leading
part of the array
VOMMA contains the sensitivity,
, of
VEGA to change in the volatility of the underlying asset.
- 24: 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 two European calls with jumps. The time to expiry is months, the stock price is and strike prices are and respectively. 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 while the total volatility is per year.
9.1 Program Text
Program Text (s30jbfe.f90)
9.2 Program Data
Program Data (s30jbfe.d)
9.3 Program Results
Program Results (s30jbfe.r)