FE621 Homework 4 Solved

35.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

Rate this product

Problem 1. Comparing different Monte Carlo schemes.

Consider the Black-Scholes setup (geometric Brownian motion) with r = 3%, δ = 1%= 20%, S0 = 100, and assume we want to price an European option with strike K = 100 and maturity T = 1.

  • Implement a simple Monte Carlo scheme using m simulation trials for European Call and Put options. This should be a function of n (number of time steps) and m. In all practical applications you should use at least 300 time steps and at least 1 million simulated paths. Furthermore, implement a calculation of the standard error of the estimate of the option price and a way to time the simulation routine. Please output the results obtained when varying n (300 -700) and m (1-5 million). Pick just a few values in each range.
  • Implement a Monte Carlo scheme for European call and put options using the antithetic variates method, the delta–based control variate with β1 = −1, and the combined antithetic variates with delta-based control variate method. Report the values obtained in four columns: Monte Carlo (MC), MC with Antithetic Variates, MC with Delta-based Control Variate, and MC with both Antithetic Variates and Delta-based Control Variate. Report the estimated option values, the corresponding standard deviations, as well as the time it takes to obtain each result. Write a short paragraph comparing the results you obtained. Discuss the methods implemented.

Problem 2. Path-dependent options using Monte Carlo (30 points) In this question, we shall consider the valuation of two representative pathdependent options using the Monte Carlo method. The stock price follows a geometric Brownian motion, and parameters are: S0 = 100,K = 100,r = 3%, δ = 1%= 20%,T = 1. The number of time steps is n = 120, and the number of simulations is m = 1 million.

  • Consider the valuation of a discretely-monitored arithmetic Asian call option. Assume there are 12 monitoring points, i.e. the stock price is monitored every month, ti = i/12,i = 1,…,12, and the payoff is given by

. Hint: note that you are simulating 120 observations

and you will need to use exactly 12 of those. Use the end of the month observations for this purpose.

  • Consider the valuation of a discretely-monitored up and out barrier call option. The barrier level is H = 110. Assume there are 12 monitoring points, i.e. the stock price is monitored every month, 12, and the payoff is given by (.

Problem 3. Generating correlated BM and pricing basket options.

  • Given a correlation matrix A,

 ,

perform a Cholesky decomposition of the matrix A, which is a decomposition of the form A = LLT, when A is symmetric and positive definite matrix. The function you construct should return the lower triangular matrix, L.

Consider three assets, starting with S(0) = [100,101,98]. The assets are assumed to follow a standard geometric Brownian motion of the form

dSi(t) = µiSi(t)dt + σiSi(t)dWi(t).

We assume µ = [0.03,0.06,0.02], the volatility σ = [0.05,0.2,0.15], and the BM’s have the correlation matrix A (e.g., d < W1,W2 >= a12dt = 0.5dt).

  • We take maturity T = 100 days and the number of simulated paths is m = 1000, Consider one day sampling frequency, i.e. ∆t = 1/ Generate a 3−dimensional matrix where each row represents a time step, each column represent a separate simulation for a specific asset and the 3-rd dimension represents different assets in the basket. Plot one realization (sample path) for this 3−dimensional process.
  • Basket options are options on a basket of assets. A commonly traded basket option is a vanilla call/put option on a linear combination of assets. To clarify, suppose Si(t),i = 1,…,N are the prices of N stocks at time t and let ai,i = 1,…,N are real constants. Set

N

U(t) = XaiSi(t)

i=1

A vanilla basket option is simply a vanilla option on U(T). Specifically, on the exercise date T, the payoff of the option is max{α(U(T)−K),0}, where K is the exercise price and α = 1 for a call and α = −1 for a put. Price an European call option and an European put option with K = 100 on the 3 asset basket given in part (b), using a Monte Carlo simulation. Consider a simple average basket a1 = a2 = a3 = 1/3.

  • Please price an exotic option on the basket in part (b), described using the following conditions where we use B = 104, and K = 100:
    • If the asset 2 (S2) hits the barrier B < S2(t) for some t then the payoff of the option is equal to an European Call option written on the asset

2;

  • If maxt∈[0,T] S2(t) > maxt∈[0,T] S3(t), then the payoff of the option is

;

  • Take), the average of the daily values for stock
  1. i. If A2(0,T) > A3(0,T), then the payoff is (A2(0,T) − K)+;
  • otherwise, the option is a vanilla call option on the basket, similar to part (c) of this problem.

Problem 4. (BONUS) Simulating the Heston model.

Consider the Heston stochastic volatility model with parameters: S0 = 100, V0 = 0.010201, κ = 6.21, θ = 0.019, σ = 0.61, ρ = −0.7, r = 3.19%.

  • Apply the Euler discretization schemes as presented in Table 1 of the paper [1]. Please implement all the five schemes listed there and use Monte Carlo simulations to price a call option with strike K = 100 and maturity T = 1. The exact call option price (benchmark) is in this case C0 = 6.8061. Provide a table listing the estimated call option price, the bias, the root mean square error (RMSE), and the computation time in seconds. Report the results for each of the five schemes in one table.
  • Quadrature methods can be used to price options under the Heston Model. The paper [2] provides a good implementation of the Heston Model and the corresponding pricing problem. Compute numerically the price of the option from part (a) using the formula (1.4) in [2], with the parameters provided in the same paper in Section 6. Please note that in order to calculate the option price C(S0,K,V0,t,T) one needs to evaluate the integral in equation (1.5) in [2]. Use Simpson’s Rule for this purpose, with tolerance ε = 10−4.
  • Compare and contrast the two approaches.

References

  • Lord, Roger, Remmert Koekkoek, and Dick Van Dijk. A comparison of biased simulation schemes for stochastic volatility models. Quantitative Finance 10.2 (2010): 177-194.
  • Mikhailov, Sergei and Nogel, Ulrich. “Heston’s stochastic volatility model: Implementation, calibration and some extensions”Wilmott Journal, 2004.
  • HW4-irqbxi.zip