bear.call.bls {FinancialMath} | R Documentation |
Bear Call Spread - Black Scholes
Description
Gives a table and graphical representation of the payoff and profit of a bear call spread for a range of future stock prices. Uses the Black Scholes equation for the call prices.
Usage
bear.call.bls(S,K1,K2,r,t,sd,plot=FALSE)
Arguments
S |
spot price at time 0 |
K1 |
strike price of the short call |
K2 |
strike price of the long call |
r |
yearly continuously compounded risk free rate |
t |
time of expiration (in years) |
sd |
standard deviation of the stock (volatility) |
plot |
tells whether or not to plot the payoff and profit |
Details
Stock price at time t =S_t
For S_t<=K1
: payoff =0
For K1<S_t<K2
: payoff =K1-S_t
For S_t>=K2
: payoff =K1-K2
payoff = profit+(price_{K1}-price_{K2})*e^{r*t}
Value
A list of two components.
Payoff |
A data frame of different payoffs and profits for given stock prices. |
Premiums |
A matrix of the premiums for the call options and the net cost. |
Note
K1 must be less than S, and K2 must be greater than S.
Author(s)
Kameron Penn and Jack Schmidt
See Also
Examples
bear.call.bls(S=100,K1=70,K2=130,r=.03,t=1,sd=.2)