Question

In: Finance

Q3. Consider the following data: S = 100; r = .08; s = .3 on the...

Q3. Consider the following data: S = 100; r = .08; s = .3 on the following two options:

Call 1   Call 2

K = 100;     K = 90

T-t=90 days.      T-t=180 days.

Price: 6.91 16.33

Delta: .58 .78

Gamma: .02 .0138

3.1 A trader just shorted 100 CBOE calls 2.

Calculate the number of shares necessary to create a Delta Neutral position.

3.2 A trader just shorted 100 CBOE calls 2.

Calculate the number of calls 1 and shares of the underlying stock that the trader must hold (long or short) in order to create a Delta-Gamma neutral position

Q4. A trader just shorted 100 of calls 1 and 100 of calls 2 from Q3.

Calculate the delta and the Gamma of this position.

Q5. Consider put 1 and put 2, which are on the same stock and with the same exercise prices and time to expiration as their respective calls from Q3.

Calculate the number of shares covered in put 1 that together with the short calls 1 and 2 from Q3. create a Delta-neutral position.

Q6. Calculate the number of the shares in put 1 and put 2 needed to create a delta-Gamma neutral portfolio consisting of the short calls (call 1 and call 2 from Q3.) and the two puts.

Solutions

Expert Solution

Call 1 Call 2
S 100 100
K 100 90
T-t 90 180
Price 6.91 16.33
Delta 0.58 0.78
Gamma 0.02 0.0138
r 0.08 0.08
s 0.3 0.3

3.1 Short Position in 100 Call 2

Call 2 delta = 0.78

Position required in shares for delta hedging:

Each call has 100 shares. So total numbers of underlying assets for Long position to be delta hedged is

0.78*100*100 = 7800 Shares to be Purchased

3.2 Short Position in 100 Call 2

Delta Gamma Hedge in Call 1 and Shares:

Delta of Short Position in Call2 is -0.78*100 = -78 (- ve sign due to short position)

Delta of Call 1 is 0.58 and that of shares is 1

Delta Neutrality: -78 + 0.58A + B = 0 (where A is number of Call 1 to be purchased and B is number of Shares to be purchased)

Gamma Neutrality : - (-0.0138*100) + 0.02A +0B = 0 (Gamma of share is 0)

Solving gamma neutrality equation

- (-0.0138*100*100) + (0.02*100)A +0B = 0

-138+2A = 0

A = - 69, Short position in Call 1

Putting A=-69 in delta neutrality equation

-78+0.58*100*(-69)+B=0

-78-4002+B=0

B=4080, Long Position in Share

Q.4) Short position in 100 Call 1 and 100 Call 2

The Portfolio Delta is = 100*(-0.58)+100*(-0.78) = -136

Q.5) Delta of Put 1 =Call 1 Delta - 1 = 0.58-1

Delta of Put 1 = - 0.42  

100 Short Call 1 and 100 Short Call 2 Delta = 100*(-0.58)+100*(-0.78) = -136

Position in Put Required for delta neutral

A*(-0.42) -136 = 0

A = -323.8 = -324

Short Poistion in 324 Put 1


Related Solutions

Consider the following model of interacting species: R' = R(2 + 3R − S) S' =...
Consider the following model of interacting species: R' = R(2 + 3R − S) S' = S(1 − S + 4R) (a) Find all the equilibrium points, and determine the type of those points which are in the first quadrant (including those on the axes) (b) Plot the phase portrait of the system. (c) If the initial conditions are R(0) = 1 and S(0) = 1, what will be the population size of each species when t → ∞?
For a stock index, S = $100. sigma = 30%, r = 5%, Div = 3%,...
For a stock index, S = $100. sigma = 30%, r = 5%, Div = 3%, and T= 3. Let n = 3. Do not use the black scholes model but a binomial model. a. What is the price of a European call option with a strike of $95? b. What is the price of a European put option with a strike of $95? c. Now let S = $95, K = $100, sigma = 30%, r= 3%, and Div...
Consider the following data. S 27.8 X 25 r 0.02 T 0.5 sigma 0.17 Calculate the...
Consider the following data. S 27.8 X 25 r 0.02 T 0.5 sigma 0.17 Calculate the Black-Scholes value of the call option Calculate the delta How many units of the underlying stock should you hold to hedge a short position in 100 call option contracts? The contract multiplier is 100.
Suppose we are given the following information of a stock: S = 100, r = 5%,...
Suppose we are given the following information of a stock: S = 100, r = 5%, σ = 30%, and the stock doesn’t pay any dividend. Calculate the delta of a credit spread using two put options (strike price = $90 and $80) that matures in 0.5 year, based on BSM model. A. 0.135 B. -0.135 C. 0.337 D. -0.337
Suppose we are given the following information of a stock: S = 100, r = 5%,...
Suppose we are given the following information of a stock: S = 100, r = 5%, σ = 30%, and the stock doesn’t pay any dividend. Calculate the delta of a credit spread using two put options (strike price = $90 and $80) that matures in 0.5 year, based on BSM model. A. 0.135 B. -0.135 C. 0.337 D. -0.337
Q3. Consider the matrix A . Use R statistical software to determine the eigenvalues and normalized...
Q3. Consider the matrix A . Use R statistical software to determine the eigenvalues and normalized eigenvectors of A, trace of A, determinant of A, and inverse of A. Also determine the eigenvalues and normalized eigenvectors of A-1. Your answer should include your R code (annotated with comments) and a hand-written or typed summary of the answers from the R output.
Q3. Please use R software to solve this. A confidence interval having 100(1 − α)% confidence...
Q3. Please use R software to solve this. A confidence interval having 100(1 − α)% confidence for normally distributed data is formed by y ± zα/2σ / √n. (That's actually y-bar in the expression, not y). Generate 500 records of 10 columns of normal data with mean 50 and standard deviation 10. Generate two more columns using the confidence bounds expression to give a lower and upper bound consistent with a 95% confidence interval, using each record as a sample...
Please answer in C++ Given 3 numbers T, r and s, where r != s and...
Please answer in C++ Given 3 numbers T, r and s, where r != s and r > 1 & s > 1. Print a list of numbers from 1 to T where numbers divisible by r whose decimal representation does not contain the digit r should be replaced by the number 555 and any number (int) divisible by s whose decimal representation does not contain the number s should be replaced by the number 333. Numbers for which both...
Determine which of the following sets of vectors form a basis for R 3 . S...
Determine which of the following sets of vectors form a basis for R 3 . S = {(1, 0, −1),(2, 5, 1),(0, −4, 3)}, T = {(−1, 3, 2),(3, −1, −3),(1, 5, 1)}.
An R-C circuit with R = 100 ohm and C = 3 mF is connected to...
An R-C circuit with R = 100 ohm and C = 3 mF is connected to a 90 V source of emf. At t = 0 the switch is closed and the capacitor begins to charge. a) How much energy (in J) is stored in the capacitor at t = 0.7 s? b) What is the largest amount of energy that can be store in the capacitor?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT