Skip to contents

This function computes delta greek for an option with the modified Corrado-Su pricing model.

Usage

csmdelta(type, spot, strike, time, rate, yield, sigma, mu3, mu4)

Arguments

type

'call' for call option, any other value for put.

spot

current stock price.

strike

the strike price.

time

time to option expiration in years.

rate

the risk-free interest rate.

yield

the dividends that are expected to be paid.

sigma

volatility of the stock price.

mu3

skewness.

mu4

kurtosis.

Value

Vector with options Delta.

Examples

csmdelta("call", 14, 13, 0.1, 0.15, 0, 0.5, 0.18, 3.53)
#> [1] 0.7401847
csmdelta("put", 14, 13, 0.1, 0.15, 0, 0.5, 0.18, 2.53)
#> [1] -0.2760983