| Financial Toolbox | Search  Help Desk |
| blsdelta | Examples See Also |
Black-Scholes sensitivity to underlying price change.
Syntax
[cd, pd] = blsdelta(so, x, r, t, sig, q) [cd, pd] = blsdelta(so, x, r, t, sig)
Arguments
soxrtsigq0.Description
[cd, pd] = blsdelta(so, x, r, t, sig, q)
returns sensitivity in option value to change in the underlying security price. Delta is also known as the hedge ratio. cd is the delta of a call option, and pd is the delta of a put option.
Note: This function uses normcdf, the normal cumulative distribution function in the Statistics Toolbox.
Example
[cd, pd] = blsdelta(50, 50, 0.1, 0.25, 0.3, 0)cd =0.5955pd =-0.4045
See Also
blsgamma, blslambda, blsprice, blsrho, blstheta, blsvega
Reference
Hull, Options, Futures, and Other Derivative Securities, 2nd edition, Chapter 13.