EuroCall: European Call

Description Usage Arguments Value Author(s) References Examples

View source: R/BSM.R

Description

A call option that can only be exercised at expiration

Usage

1
EuroCall(Stock, Exercise, Time, Interest, Yield, sigma)

Arguments

Stock

S0, the initial stock price

Exercise

K, the strike price

Time

T, the time to maturity in fractional years

Interest

r, the risk-free rate of return

Yield

q, the dividend yield

sigma

the asset volatility

Value

the price of a European Call Option

Author(s)

George Fisher GeorgeRFisher@gmail.com

References

Hull 7th edition Ch 13 P 291

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# Hull 7th edition Ch 13 P 294
Stock     <- 42    # S_0
Exercise  <- 40    # K
Time      <- 0.50  # T
Interest  <- 0.10  # r
Yield     <- 0     # q
sigma     <- 0.20
ans <- EuroCall(Stock, Exercise, Time, Interest, Yield, sigma)
round(ans,2)       # 4.76

## Not run: 
GenBS(Stock, Exercise, Interest, sigma, Time, Yield)

## End(Not run)

grfiv/ustreasuries documentation built on May 17, 2019, 8:36 a.m.