due Saturday May 26, 2018, 12:00 noon

Size: px
Start display at page:

Download "due Saturday May 26, 2018, 12:00 noon"

Transcription

1 Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 2018 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2018 Final Spring 2018 due Saturday May 26, 2018, 12:00 noon NOTE: It is the policy of the Computer Science Department to issue a failing grade to any student who either gives or receives help on any test. This is an open-book test. Any problem to which you give two or more (di erent) answers receives the grade of zero automatically. This is a take home exam. Please submit your solution via , as a file attachment, to Sateesh.Mane@qc.cuny.edu. The file name should have either of the formats: StudentId first last CS365 final May2018 StudentId first last CS765 final May2018 Acceptable file types are txt, doc/docx, pdf (also cpp, with text in comment blocks). Send one cpp file with all your code, one docx/pdf/txt file with non-code answers. In all questions where you are asked to submit programming code, programs which display any of the following behaviors will receive an automatic F: 1. Programs which do not compile successfully (compiler warnings which are not fatal are excluded, e.g. use of deprecated features). 2. Array out of bounds, dereferencing of uninitialized variables (including null pointers). 3. Operations which yield NAN or infinity, e.g. divide by zero, square root of negative number, etc. Infinite loops. 4. Programs which do NOT implement the public interface stated in the question. In addition, note the following: 1. Programs which compile and run successfully but have memory leaks will receive a poor grade (but not F). 2. All debugging and/or output statements (e.g. cout or printf) will be commented out. 3. Program performance will be tested solely on function return values and the values of output variable(s) in the function arguments. 4. In other words, program performance will be tested solely via the public interface presented to the calling application. (I will write the calling application.) 1

2 1 Question 1 (no code) You do NOT need to submit programming code for this question. The time today is t 0 = 0. The par yields and bootstrapped spot rates of the yield curve are tabulated below. t y (%) r (%) You are given a newly issued bond with a maturity of T = 2 years and face value F = 100. The bond pays 8 coupons, with a quarterly frequency at times t i =0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75 and 2.0, where i =1,...,8. The amounts of the annualized coupon rates are as follows: 1. The (annualized) coupon rates are the 8 digits of your student id. 2. For example if your student id is , the coupons are (2, 3, 0, 5, 4, 6, 1, 7). 3. It is possible for some coupon amounts to be zero. 4. Recall there is a factor of 4 for quarterly coupons. 5. Hence in this case the bond fair value B is, with discount factors d ti, B = 2 4 d d d d d d d F + 7 d (1.1) The discount factors d ti are obtained via cfr (constant forward rate) interpolation of the yield curve. Calculate the fair value of the bond in eq. (1.1). Call the answer B FV. State your answer to 2 decimal places. Calculate the yield y of the bond in eq. (1.1), if the bond market price is B FV. Call the answer y 1. State the value of y 1 (in percent) to 2 decimal places. Recall for quarterly coupons the bond fair value is given by apple X c i /4 F B FV = ( y)4t i ( (1.2) 4y)8 Define a constant coupon, say c. Find the value of c such that B FV = c 4 d c 4 d c 4 d c 4 d c 4 d c 4 d c 4 d State the value of c to 2 decimal places. i F + c d 2.0. (1.3) 4 2

3 2 Question 2 (no code) 2.1 Case 1 In this question, the stock does not pay dividends. The prices of an American call C and American put P with the same strike K and expiration T (and on the same stock S) satisfy the following arbitrage bounds C P S K, C P apple S PV(K). (2.1) Suppose that at time t 0 (today), S 0 = 100.5, K = 100 and e r(t t 0) =0.99. All symbols have their usual meanings. An American call and put both trade today at C = P = 10. Formulate an arbitrage strategy to take advantage of the above mispricing. 2.2 Case 2 In this question, the stock does not pay dividends. The prices of two American calls C 1 and C 2 with strikes K 1 and K 2, respectively (and K 1 < K 2 ), with the same expiration T (and on the same stock S) satisfy the following arbitrage inequality C 1 C 2 apple K 2 K 1. (2.2) Suppose that at time t 0 (today), S 0 = 100.5, K 1 = 100, K 2 = 105 and e r(t t 0) =0.99. All symbols have their usual meanings. The American calls have prices today of C 1 = 11 and C 2 = 5. Formulate an arbitrage strategy to take advantage of the above mispricing. 2.3 Case 3 In this question, the stock does not pay dividends. The prices of two American puts P 1 and P 2 with strikes K 1 and K 2, respectively (and K 1 < K 2 ), with the same expiration T (and on the same stock S) satisfy the following arbitrage inequality P 2 P 1 apple K 2 K 1. (2.3) Suppose that at time t 0 (today), S 0 = 100.5, K 1 = 100, K 2 = 105 and e r(t t 0) =0.99. All symbols have their usual meanings. The American puts have prices today of P 1 = 5 and P 2 = 11. Formulate an arbitrage strategy to take advantage of the above mispricing. 3

4 3 Question 3 (no code) A butterfly spread consists of three options on the same stock. All three options have the same expiration time T. The options have strike prices K 1, K 2 and K 3, which are are equally spaced. Hence K 2 is located at the midpoint of K 1 and K 3,soK 2 =(K 1 + K 3 )/2. A butterfly spread can be created using three call options or three put options. The spread consists of long one option at K 1, short two options at K 2, long one option at K European option butterfly spreads Suppose the market price of a stock is S at the current time t. dividends. The interest rate is r>0 (a constant). The stock does not pay For a European call and put c and p with the same strike K and expiration T, the put-call parity relation in this case is c p = S Ke r(t t). (3.1) Let c i and p i, i =1, 2, 3, be the values of European calls and puts with strikes K 1, K 2 and K 3,whereK 2 =(K 1 + K 3 )/2. Use eq. (3.1) to prove the following relation: c 1 2c 2 + c 3 = p 1 2p 2 + p 3. (3.2) The values of a European call butterfly spread and a European put butterfly spread are equal. The corresponding relation is not necessarily true for American options. 4

5 3.2 American calls A butterfly spread consists of three American calls C 1, C 2 and C 3,withstrikesK 1, K 2 and K 3, as described above. The butterfly spread consists long C 1, short 2 C 2, long C 3 : B call (S, t) =C 1 2C 2 + C 3. (3.3) Draw a graph of the intrinsic value of the butterfly spread B call (S, t). Show that B call (S, t) < 0 if C 2 (S, t) > C 1(S, t)+c 3 (S, t) 2 Formulate an arbitrage trade if C 2 (S, t) > (C 1 (S, t)+c 3 (S, t))/2.. (3.4) Therefore deduce the following inequality must be true at any time t apple T : C 2 (S, t) apple C 1(S, t)+c 3 (S, t) 2. (3.5) The mathematical expression is that the value of a call option is a convex function of the strike. 3.3 American puts A butterfly spread consists of three American puts P 1, P 2 and P 3,withstrikesK 1, K 2 and K 3, as described above. The butterfly spread consists long P 1, short 2 P 2, long P 3 : B put (S, t) =P 1 2P 2 + P 3. (3.6) Draw a graph of the intrinsic value of the butterfly spread B put (S, t). Show that B put (S, t) < 0 if P 2 (S, t) > P 1(S, t)+p 3 (P, t) 2 Formulate an arbitrage trade if P 2 (S, t) > (P 1 (S, t)+p 3 (S, t))/2.. (3.7) Therefore deduce the following inequality must be true at any time t apple T : P 2 (S, t) apple P 1(S, t)+p 3 (S, t) 2. (3.8) The mathematical expression is that the value of a put option is a convex function of the strike. 5

6 4 Question 4 (submit code) In this question we shall employ the classes BinomialTree and Derivative, etc.introduced in Homework 9. Write a class Option which inherits from Derivative. 1. The option has a strike K and expiration T. 2. The option can be a put/call (bool iscall). 3. The option can be American/European (bool isamerican). 4. Make all the data members public so I can set them in my calling application. Submit your code for all of the above classes (including the Database class, etc. Denote the fair values of a European call and put option by c and p, respectively. Denote the fair values of an American call and put option by C and P,respectively. Your code will be tested by a calling application with random input values for (S 0,K,r,q,,T,t 0 ). 1. The option fair values will be calculated using the BinomialTree class. 2. Your code will be tested to see if it satisfies put call parity for European options (with a tolerance of 10 6 ): (c p) (Se q(t t 0) Ke r(t t 0) ) apple (4.1) 3. Your code will be tested to see if it satisfies the following inequalities for American options (with a tolerance of 10 6 ): C P (Se q(t t 0) K) 10 6, C P apple (S Ke r(t t 0) ) (4.2) 4. Other inequalities will also be checked: 0 apple c apple Se q(t t0) , 0 apple C apple S , 0 apple p apple Ke r(t t0) , 0 apple P apple K (4.3) 5. I may perform other tests. Your code must pass all the rational option pricing inequalities in Lecture 7 (for a stock with a continuous dividend yield). 6. There will be no tests with discrete dividends. 6

7 5 Question 5 (submit code) A straddle is an option spread with expiration time T and strike price K and a terminal payo of S T K. A European straddle is therefore equal to a long European call plus a long European put, both with the same expiration T and the same strike K. An American straddle can be exercised at any time t 0 apple t apple T, and pays S t K if exercised. An American straddle is therefore cheaper than a long American call plus a long American put, both with the same expiration T and the same strike K. This is because the American options can be exercised individually, whereas when the straddle is exercised, the entire package terminates. Write a class Straddle which inherits from Derivative. 1. The straddle has a strike K and expiration T. 2. The straddle can be American/European (bool isamerican). 3. Make all the data members public so I can set them in my calling application. Your code will be tested by a calling application with random input values for (S 0,K,r,q,,T,t 0 ). 1. The fair value of a straddle will be calculated using the BinomialTree class. 2. Denote the fair value of a straddle by Z. 3. Your code for the fair value of a European straddle will be tested to see if it satisfies the following equality (with a tolerance of 10 6 ): Z Eur (c + p) apple (5.1) 4. Your code for the fair value of an American straddle will be tested to see if it satisfies the following inequalities (with a tolerance of 10 6 ): Z Am S 0 K 10 6, Z Am apple (C + P ) (5.2) 7

8 6 Question 6 (submit code) A binary option (also known as a digital option) is an option with expiration time T and strike price K and the following terminal payo : 1. A binary call option pays $1 if S T K and zero otherwise. 2. A binary put option pays $1 if S T <K and zero otherwise. Write a class BinaryOption which inherits from Derivative. We shall consider only European binary call options below so we can ignore the early exercise valuation tests. You are given the following input values: S 0 = 90, K = 100, q =0.02, T = 1, t 0 = 0. Set the risk free rate to the value of y 1 from Question 1. (Note that r is a decimal value, so for example if y 1 =5.12% then set r = ) r = y 1 (decimal). (6.1) There are also Black Scholes Merton formulas for the fair values of binary options c bin = e r(t t 0) N(d 2 ), p bin = e r(t t 0) N( d 2 ). (6.2) Write functions to compute the formulas in eq. (6.2). Submit you code as part of your solution to this question. Use n = 1000 steps in the binomial model. Fill the following table. c binomial binary p binomial binary c BSM binary p BSM binary 0.1 3d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p d.p. 3d.p. 3d.p. 3d.p. Plot a graph of the binary call option fair value as a function of the volatility, using (i) the binomial model and (ii) the Black Scholes Merton formulas in eq. (6.2), for 0.01 apple apple 1.0 in steps of

9 Plot a graph of the binary put option fair value as a function of the volatility, using (i) the binomial model and (ii) the Black Scholes Merton formulas in eq. (6.2), for 0.01 apple apple 1.0 in steps of Do not be concerned if the graphs look choppy (not smooth curves) for the binomial model. If you have done your work correctly, the binary option fair values will NOT be monotonic functions of the volatility. The fair value of the binary call will exhibit a peak and the fair value of the binary put will exhibit a dip. Because of the peak/dip, implied volatility is not a useful concept for binary options. For a given market price, there can be two solutions for the implied volatility, i.e. not a unique value. 9

10 7 Question 7 (submit code) This question will carry more weight than the others, maybe double weight. A convertible bond is an equity derivative with the following characteristics. 1. It has a strike K and expiration T and can be American or European. 2. The terminal payo is 3. This is similar to the payo in Midterm 2 Question 6(a). terminal payo = max(s T,K). (7.1) 4. What this means is that if S T K at expiration, the holder receives one share of stock and if S T <K at expiration, the holder receives cash in the amount K. 5. Prior to expiration, if a convertible bond is exercised, the intrisic value at time t is S t : intrinsic value at time t = S t. (7.2) 6. We shall add one more feature, essentially a knockout barrier. 7. Many convertible bonds are callable. 8. This means that there is a threshold B and if S B at any time, the convertible bond terminates. The value of the convertible bond if called in this way is V = S. 9. Hence in addition to early exercise, we add one more feature to the valuation tests, which is V = S t if S t B for t 0 apple t<t. In more detail, a convertible bond is intermediate between a bond and an option. 1. A convertible bond also pays coupons. 2. We shall ignore coupons and consider only a zero coupon convertible bond. 3. Zero coupon convertible bonds do exist. Prove that V PV(K) for a zero coupon convertible bond. Convertible bonds are issued by companies, and when an investor exercises a convertible bond, the company prints new shares of stock and delivers them to the investor. In that sense, convertible bonds are di erent from exchange listed options and are more similar to warrants. Convertible bonds usually have much longer expiration times than exchange listed options, extending many years (30 years is not uncommon). One reason investors buy convertible bonds is because they can perform gamma trading with a longer time horizon than is possible with exchange listed options. In this question, we shall perform gamma trading with a convertible bond. See next page. 10

11 Write a class ConvertibleBond which inherits from Derivative. In this question, we shall employ a callable American convertible bond. Denote the fair value of the convertible bond by U. Denote the market price of the convertible bond by M. You are given the following inputs: K = 100, B = 130, T =5.0, r =0.05 and q = 0. Use n = 1000 steps in the binomial model. A graph of the fair value of a convertible bond with the above parameters in displayed in Fig. 1. The fair value was calculated with a volatility of = Plot a graph of the fair value of a convertible bond with the above parameters using a volatility of =0.5. If you have done your work correctly, the fair value will be higher than that displayed in Fig. 1. (Except V = S when S B and also at S = 0.) (Bonus) Explain why the fair value at S! 0 is the same in both graphs, independent of the value of the volatility. 150 Fair Value of Convertible Bond call threshold S Figure 1: Graph of the fair value of a convertible bond. The intrinsic value is shown as a dashed line. The call threshold is also indicated. 11

12 We require two more values. 1. Take the first 4 digits of your student id. Define: S 1 = first 4 digits of your student id (7.3) 2. Take the last 4 digits of your student id. Define (note the minus sign): S 2 = last 4 digits of your student id (7.4) 3. For example if your student id is , then S 1 =0.2305, S 2 = (7.5) 4. Note that S 2 is negative. See next page. 12

13 We shall perform gamma trading using a convertible bond. 1. Day 0: (a) The time is t 0 = 0. (b) The stock price is S 0 = 60. (c) The convertible bond market price is M 0 = 90. (d) Calculate the implied volatility of the convertible bond (4 decimal places). (e) Denote the answer by 0. (f) Calculate the Delta of the convertible bond (4 decimal places) using a finite di erence numerical derivative as follows. The volatility is = 0. 0 = U(S 0 + 1) U(S 0 1) 2 (t 0 =0, = 0 ). (7.6) (g) We start trading with zero cash and zero stock and options. (h) We create a portfolio of long one convertible bond U and short sale of 0 shares of stock. (i) The money in the bank on day 0 is therefore Money 0 = 0 S 0 M 0. (7.7) (j) Calculate the value of Money 0 to 2 decimal places. (It may be negative.) (k) See next page. 13

14 2. Day 1: (a) The time is t 0 =0.01. (b) The stock price has changed to: S 1 = S 0 + S 1. (7.8) (c) The convertible bond market price has changed to: M 1 = (7.9) (d) Calculate the implied volatility of the convertible bond (4 decimal places). (e) Denote the answer by 1. (f) Calculate the Delta of the convertible bond (4 decimal places) using a finite di erence numerical derivative as follows. The volatility is = 1. 1 = U(S 1 + 1) U(S 1 1) 2 (t 0 =0.01, = 1 ). (7.10) (g) We rebalance the hedge to short 1 shares of stock. (h) Hence we sell 1 0 shares of stock, at the new stock price S 1. (i) The money in the bank on day 1 is therefore: Money 1 = Money 0 +( 1 0)S 1. (7.11) (j) Calculate the value of Money 1 to 2 decimal places. (k) The value of Money 1 may be greater or less that Money 0,itwillbedi erent for each of you. (l) See next page. 14

15 3. Day 2: (a) The time is t 0 =0.02. (b) The stock price has changed to: S 2 = S 1 + S 2. (7.12) (c) Note that this is a negative change in the stock price. (d) The convertible bond market price has changed to: M 2 = (7.13) (e) Calculate the implied volatility of the convertible bond (4 decimal places). (f) Denote the answer by 2. (g) Calculate the Delta of the convertible bond (4 decimal places) using a finite di erence numerical derivative as follows. The volatility is = 2. 2 = U(S 2 + 1) U(S 2 1) 2 (t 0 =0.02, = 2 ). (7.14) (h) We rebalance the hedge to short 2 shares of stock. (i) Hence we sell 2 1 shares of stock, at the new stock price S 2. (j) (Note that 2 1 is a negative number, so we are really buying stock at the new stock price S 2. We let the mathematics take care of the minus signs.) (k) The money in the bank on day 2 is therefore: Money 2 = Money 1 +( 2 1)S 2. (7.15) (l) Calculate the value of Money 2 to 2 decimal places. (m) Once again, the value of Money 2 may be greater or less than Money 1. (n) See next page. 15

16 We close out our gamma trading portfolio at the end of day We sell our convertible bond at the price M We buy 2 shares of stock at the stock price S 2 to close out our short stock position. 3. Hence there is only cash in the bank. The convertible bond and the stock are gone. 4. Your total profit is therefore: Profit = Money 2 + M 2 2 S 2. (7.16) 5. Calculate the value of the profit to 2 decimal places. 6. This is your profit from gamma trading. 7. If you have done your work correctly, you should obtain a positive profit. 8. Note that I neglected interest rate compounding to calculate the profit/loss. For an expiration time of 5 years and a trading interval of two days, the e ects of interest rate compounding are negligible and merely make the calculations complicated. 9. Notice that the stock price was always S<K, yet the gamma trading strategy yielded a profit. 10. This is what options traders do. 11. Options traders buy and sell volatility. 12. Options traders do not care if an option (or convertible bond) is out of the money its whole life. 16

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2017 20 Lecture 20 Implied volatility November 30, 2017

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 2018 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 2018 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 218 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 218 19 Lecture 19 May 12, 218 Exotic options The term

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2018 Instructor: Dr. Sateesh Mane

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2018 Instructor: Dr. Sateesh Mane Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 08 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 08 Homework Please email your solution, as a file attachment,

More information

4 Homework: Forwards & Futures

4 Homework: Forwards & Futures Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2017 November 15, 2017 due Friday October 13, 2017 at

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2017 9 Lecture 9 9.1 The Greeks November 15, 2017 Let

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 217 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 217 13 Lecture 13 November 15, 217 Derivation of the Black-Scholes-Merton

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Fall 2017 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2017 14 Lecture 14 November 15, 2017 Derivation of the

More information

3 + 30e 0.10(3/12) > <

3 + 30e 0.10(3/12) > < Millersville University Department of Mathematics MATH 472, Financial Mathematics, Homework 06 November 8, 2011 Please answer the following questions. Partial credit will be given as appropriate, do not

More information

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 2018 Instructor: Dr. Sateesh Mane. September 16, 2018

Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 2018 Instructor: Dr. Sateesh Mane. September 16, 2018 Queens College, CUNY, Department of Computer Science Computational Finance CSCI 365 / 765 Spring 208 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 208 2 Lecture 2 September 6, 208 2. Bond: more general

More information

UNIVERSITY OF AGDER EXAM. Faculty of Economicsand Social Sciences. Exam code: Exam name: Date: Time: Number of pages: Number of problems: Enclosure:

UNIVERSITY OF AGDER EXAM. Faculty of Economicsand Social Sciences. Exam code: Exam name: Date: Time: Number of pages: Number of problems: Enclosure: UNIVERSITY OF AGDER Faculty of Economicsand Social Sciences Exam code: Exam name: Date: Time: Number of pages: Number of problems: Enclosure: Exam aids: Comments: EXAM BE-411, ORDINARY EXAM Derivatives

More information

Options Markets: Introduction

Options Markets: Introduction 17-2 Options Options Markets: Introduction Derivatives are securities that get their value from the price of other securities. Derivatives are contingent claims because their payoffs depend on the value

More information

MATH 425 EXERCISES G. BERKOLAIKO

MATH 425 EXERCISES G. BERKOLAIKO MATH 425 EXERCISES G. BERKOLAIKO 1. Definitions and basic properties of options and other derivatives 1.1. Summary. Definition of European call and put options, American call and put option, forward (futures)

More information

Appendix A Financial Calculations

Appendix A Financial Calculations Derivatives Demystified: A Step-by-Step Guide to Forwards, Futures, Swaps and Options, Second Edition By Andrew M. Chisholm 010 John Wiley & Sons, Ltd. Appendix A Financial Calculations TIME VALUE OF MONEY

More information

ActuarialBrew.com. Exam MFE / 3F. Actuarial Models Financial Economics Segment. Solutions 2014, 2nd edition

ActuarialBrew.com. Exam MFE / 3F. Actuarial Models Financial Economics Segment. Solutions 2014, 2nd edition ActuarialBrew.com Exam MFE / 3F Actuarial Models Financial Economics Segment Solutions 04, nd edition www.actuarialbrew.com Brewing Better Actuarial Exam Preparation Materials ActuarialBrew.com 04 Please

More information

Econ 174 Financial Insurance Fall 2000 Allan Timmermann. Final Exam. Please answer all four questions. Each question carries 25% of the total grade.

Econ 174 Financial Insurance Fall 2000 Allan Timmermann. Final Exam. Please answer all four questions. Each question carries 25% of the total grade. Econ 174 Financial Insurance Fall 2000 Allan Timmermann UCSD Final Exam Please answer all four questions. Each question carries 25% of the total grade. 1. Explain the reasons why you agree or disagree

More information

Chapter 9 - Mechanics of Options Markets

Chapter 9 - Mechanics of Options Markets Chapter 9 - Mechanics of Options Markets Types of options Option positions and profit/loss diagrams Underlying assets Specifications Trading options Margins Taxation Warrants, employee stock options, and

More information

CHAPTER 1 Introduction to Derivative Instruments

CHAPTER 1 Introduction to Derivative Instruments CHAPTER 1 Introduction to Derivative Instruments In the past decades, we have witnessed the revolution in the trading of financial derivative securities in financial markets around the world. A derivative

More information

Final Exam. Please answer all four questions. Each question carries 25% of the total grade.

Final Exam. Please answer all four questions. Each question carries 25% of the total grade. Econ 174 Financial Insurance Fall 2000 Allan Timmermann UCSD Final Exam Please answer all four questions. Each question carries 25% of the total grade. 1. Explain the reasons why you agree or disagree

More information

Lecture Quantitative Finance Spring Term 2015

Lecture Quantitative Finance Spring Term 2015 and Lecture Quantitative Finance Spring Term 2015 Prof. Dr. Erich Walter Farkas Lecture 06: March 26, 2015 1 / 47 Remember and Previous chapters: introduction to the theory of options put-call parity fundamentals

More information

ActuarialBrew.com. Exam MFE / 3F. Actuarial Models Financial Economics Segment. Solutions 2014, 1 st edition

ActuarialBrew.com. Exam MFE / 3F. Actuarial Models Financial Economics Segment. Solutions 2014, 1 st edition ActuarialBrew.com Exam MFE / 3F Actuarial Models Financial Economics Segment Solutions 04, st edition www.actuarialbrew.com Brewing Better Actuarial Exam Preparation Materials ActuarialBrew.com 04 Please

More information

Valuing Put Options with Put-Call Parity S + P C = [X/(1+r f ) t ] + [D P /(1+r f ) t ] CFA Examination DERIVATIVES OPTIONS Page 1 of 6

Valuing Put Options with Put-Call Parity S + P C = [X/(1+r f ) t ] + [D P /(1+r f ) t ] CFA Examination DERIVATIVES OPTIONS Page 1 of 6 DERIVATIVES OPTIONS A. INTRODUCTION There are 2 Types of Options Calls: give the holder the RIGHT, at his discretion, to BUY a Specified number of a Specified Asset at a Specified Price on, or until, a

More information

Actuarial Models : Financial Economics

Actuarial Models : Financial Economics ` Actuarial Models : Financial Economics An Introductory Guide for Actuaries and other Business Professionals First Edition BPP Professional Education Phoenix, AZ Copyright 2010 by BPP Professional Education,

More information

FIN FINANCIAL INSTRUMENTS SPRING 2008

FIN FINANCIAL INSTRUMENTS SPRING 2008 FIN-40008 FINANCIAL INSTRUMENTS SPRING 2008 The Greeks Introduction We have studied how to price an option using the Black-Scholes formula. Now we wish to consider how the option price changes, either

More information

MATH 476/567 ACTUARIAL RISK THEORY FALL 2016 PROFESSOR WANG. Homework 3 Solution

MATH 476/567 ACTUARIAL RISK THEORY FALL 2016 PROFESSOR WANG. Homework 3 Solution MAH 476/567 ACUARIAL RISK HEORY FALL 2016 PROFESSOR WANG Homework 3 Solution 1. Consider a call option on an a nondividend paying stock. Suppose that for = 0.4 the option is trading for $33 an option.

More information

The Black-Scholes Model

The Black-Scholes Model The Black-Scholes Model Liuren Wu Options Markets (Hull chapter: 12, 13, 14) Liuren Wu ( c ) The Black-Scholes Model colorhmoptions Markets 1 / 17 The Black-Scholes-Merton (BSM) model Black and Scholes

More information

Options. An Undergraduate Introduction to Financial Mathematics. J. Robert Buchanan. J. Robert Buchanan Options

Options. An Undergraduate Introduction to Financial Mathematics. J. Robert Buchanan. J. Robert Buchanan Options Options An Undergraduate Introduction to Financial Mathematics J. Robert Buchanan 2014 Definitions and Terminology Definition An option is the right, but not the obligation, to buy or sell a security such

More information

FIN Final Exam Fixed Income Securities

FIN Final Exam Fixed Income Securities FIN8340 - Final Exam Fixed Income Securities Exam time is: 60 hours. Total points for this exam is: 600 points, corresponding to 60% of your nal grade. 0.0.1 Instructions Read carefully the questions.

More information

MULTIPLE CHOICE. 1 (5) a b c d e. 2 (5) a b c d e TRUE/FALSE 1 (2) TRUE FALSE. 3 (5) a b c d e 2 (2) TRUE FALSE. 4 (5) a b c d e 3 (2) TRUE FALSE

MULTIPLE CHOICE. 1 (5) a b c d e. 2 (5) a b c d e TRUE/FALSE 1 (2) TRUE FALSE. 3 (5) a b c d e 2 (2) TRUE FALSE. 4 (5) a b c d e 3 (2) TRUE FALSE Name: M339D=M389D Introduction to Actuarial Financial Mathematics University of Texas at Austin Sample In-Term Exam II Instructor: Milica Čudina Notes: This is a closed book and closed notes exam. The

More information

Global Financial Management. Option Contracts

Global Financial Management. Option Contracts Global Financial Management Option Contracts Copyright 1997 by Alon Brav, Campbell R. Harvey, Ernst Maug and Stephen Gray. All rights reserved. No part of this lecture may be reproduced without the permission

More information

Lecture 6: Option Pricing Using a One-step Binomial Tree. Thursday, September 12, 13

Lecture 6: Option Pricing Using a One-step Binomial Tree. Thursday, September 12, 13 Lecture 6: Option Pricing Using a One-step Binomial Tree An over-simplified model with surprisingly general extensions a single time step from 0 to T two types of traded securities: stock S and a bond

More information

CHAPTER 10 OPTION PRICING - II. Derivatives and Risk Management By Rajiv Srivastava. Copyright Oxford University Press

CHAPTER 10 OPTION PRICING - II. Derivatives and Risk Management By Rajiv Srivastava. Copyright Oxford University Press CHAPTER 10 OPTION PRICING - II Options Pricing II Intrinsic Value and Time Value Boundary Conditions for Option Pricing Arbitrage Based Relationship for Option Pricing Put Call Parity 2 Binomial Option

More information

Implied Volatility Surface

Implied Volatility Surface Implied Volatility Surface Liuren Wu Zicklin School of Business, Baruch College Fall, 2007 Liuren Wu Implied Volatility Surface Option Pricing, Fall, 2007 1 / 22 Implied volatility Recall the BSM formula:

More information

Implied Volatility Surface

Implied Volatility Surface Implied Volatility Surface Liuren Wu Zicklin School of Business, Baruch College Options Markets (Hull chapter: 16) Liuren Wu Implied Volatility Surface Options Markets 1 / 1 Implied volatility Recall the

More information

non linear Payoffs Markus K. Brunnermeier

non linear Payoffs Markus K. Brunnermeier Institutional Finance Lecture 10: Dynamic Arbitrage to Replicate non linear Payoffs Markus K. Brunnermeier Preceptor: Dong Beom Choi Princeton University 1 BINOMIAL OPTION PRICING Consider a European call

More information

The Black-Scholes Model

The Black-Scholes Model IEOR E4706: Foundations of Financial Engineering c 2016 by Martin Haugh The Black-Scholes Model In these notes we will use Itô s Lemma and a replicating argument to derive the famous Black-Scholes formula

More information

Introduction to Financial Derivatives

Introduction to Financial Derivatives 55.444 Introduction to Financial Derivatives Week of October 28, 213 Options Where we are Previously: Swaps (Chapter 7, OFOD) This Week: Option Markets and Stock Options (Chapter 9 1, OFOD) Next Week :

More information

FE610 Stochastic Calculus for Financial Engineers. Stevens Institute of Technology

FE610 Stochastic Calculus for Financial Engineers. Stevens Institute of Technology FE610 Stochastic Calculus for Financial Engineers Lecture 13. The Black-Scholes PDE Steve Yang Stevens Institute of Technology 04/25/2013 Outline 1 The Black-Scholes PDE 2 PDEs in Asset Pricing 3 Exotic

More information

The Black-Scholes Model

The Black-Scholes Model The Black-Scholes Model Liuren Wu Options Markets Liuren Wu ( c ) The Black-Merton-Scholes Model colorhmoptions Markets 1 / 18 The Black-Merton-Scholes-Merton (BMS) model Black and Scholes (1973) and Merton

More information

Corporate Finance, Module 21: Option Valuation. Practice Problems. (The attached PDF file has better formatting.) Updated: July 7, 2005

Corporate Finance, Module 21: Option Valuation. Practice Problems. (The attached PDF file has better formatting.) Updated: July 7, 2005 Corporate Finance, Module 21: Option Valuation Practice Problems (The attached PDF file has better formatting.) Updated: July 7, 2005 {This posting has more information than is needed for the corporate

More information

Mathematics of Financial Derivatives

Mathematics of Financial Derivatives Mathematics of Financial Derivatives Lecture 8 Solesne Bourguin bourguin@math.bu.edu Boston University Department of Mathematics and Statistics Table of contents 1. The Greek letters (continued) 2. Volatility

More information

Chapter 2: BASICS OF FIXED INCOME SECURITIES

Chapter 2: BASICS OF FIXED INCOME SECURITIES Chapter 2: BASICS OF FIXED INCOME SECURITIES 2.1 DISCOUNT FACTORS 2.1.1 Discount Factors across Maturities 2.1.2 Discount Factors over Time 2.1 DISCOUNT FACTORS The discount factor between two dates, t

More information

Dynamic Hedging and PDE Valuation

Dynamic Hedging and PDE Valuation Dynamic Hedging and PDE Valuation Dynamic Hedging and PDE Valuation 1/ 36 Introduction Asset prices are modeled as following di usion processes, permitting the possibility of continuous trading. This environment

More information

Forwards, Futures, Options and Swaps

Forwards, Futures, Options and Swaps Forwards, Futures, Options and Swaps A derivative asset is any asset whose payoff, price or value depends on the payoff, price or value of another asset. The underlying or primitive asset may be almost

More information

University of Colorado at Boulder Leeds School of Business MBAX-6270 MBAX Introduction to Derivatives Part II Options Valuation

University of Colorado at Boulder Leeds School of Business MBAX-6270 MBAX Introduction to Derivatives Part II Options Valuation MBAX-6270 Introduction to Derivatives Part II Options Valuation Notation c p S 0 K T European call option price European put option price Stock price (today) Strike price Maturity of option Volatility

More information

Properties of Stock Options

Properties of Stock Options Haipeng Xing Department of Applied Mathematics and Statistics Outline 1 Factors a ecting option prices 2 Upper and lower bounds for option prices 3 Put-call parity 4 E ect of dividends Assumptions There

More information

Applying Principles of Quantitative Finance to Modeling Derivatives of Non-Linear Payoffs

Applying Principles of Quantitative Finance to Modeling Derivatives of Non-Linear Payoffs Applying Principles of Quantitative Finance to Modeling Derivatives of Non-Linear Payoffs Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg : 6828

More information

Notes: This is a closed book and closed notes exam. The maximal score on this exam is 100 points. Time: 75 minutes

Notes: This is a closed book and closed notes exam. The maximal score on this exam is 100 points. Time: 75 minutes M375T/M396C Introduction to Financial Mathematics for Actuarial Applications Spring 2013 University of Texas at Austin Sample In-Term Exam II Post-test Instructor: Milica Čudina Notes: This is a closed

More information

Lecture 4: Barrier Options

Lecture 4: Barrier Options Lecture 4: Barrier Options Jim Gatheral, Merrill Lynch Case Studies in Financial Modelling Course Notes, Courant Institute of Mathematical Sciences, Fall Term, 2001 I am grateful to Peter Friz for carefully

More information

Homework Set 6 Solutions

Homework Set 6 Solutions MATH 667-010 Introduction to Mathematical Finance Prof. D. A. Edwards Due: Apr. 11, 018 P Homework Set 6 Solutions K z K + z S 1. The payoff diagram shown is for a strangle. Denote its option value by

More information

Important Concepts LECTURE 3.2: OPTION PRICING MODELS: THE BLACK-SCHOLES-MERTON MODEL. Applications of Logarithms and Exponentials in Finance

Important Concepts LECTURE 3.2: OPTION PRICING MODELS: THE BLACK-SCHOLES-MERTON MODEL. Applications of Logarithms and Exponentials in Finance Important Concepts The Black Scholes Merton (BSM) option pricing model LECTURE 3.2: OPTION PRICING MODELS: THE BLACK-SCHOLES-MERTON MODEL Black Scholes Merton Model as the Limit of the Binomial Model Origins

More information

Lecture Notes: Basic Concepts in Option Pricing - The Black and Scholes Model (Continued)

Lecture Notes: Basic Concepts in Option Pricing - The Black and Scholes Model (Continued) Brunel University Msc., EC5504, Financial Engineering Prof Menelaos Karanasos Lecture Notes: Basic Concepts in Option Pricing - The Black and Scholes Model (Continued) In previous lectures we saw that

More information

Solutions of Exercises on Black Scholes model and pricing financial derivatives MQF: ACTU. 468 S you can also use d 2 = d 1 σ T

Solutions of Exercises on Black Scholes model and pricing financial derivatives MQF: ACTU. 468 S you can also use d 2 = d 1 σ T 1 KING SAUD UNIVERSITY Academic year 2016/2017 College of Sciences, Mathematics Department Module: QMF Actu. 468 Bachelor AFM, Riyadh Mhamed Eddahbi Solutions of Exercises on Black Scholes model and pricing

More information

Derivatives Analysis & Valuation (Futures)

Derivatives Analysis & Valuation (Futures) 6.1 Derivatives Analysis & Valuation (Futures) LOS 1 : Introduction Study Session 6 Define Forward Contract, Future Contract. Forward Contract, In Forward Contract one party agrees to buy, and the counterparty

More information

Notes for Lecture 5 (February 28)

Notes for Lecture 5 (February 28) Midterm 7:40 9:00 on March 14 Ground rules: Closed book. You should bring a calculator. You may bring one 8 1/2 x 11 sheet of paper with whatever you want written on the two sides. Suggested study questions

More information

MULTIPLE CHOICE QUESTIONS

MULTIPLE CHOICE QUESTIONS Name: M375T=M396D Introduction to Actuarial Financial Mathematics Spring 2013 University of Texas at Austin Sample In-Term Exam Two: Pretest Instructor: Milica Čudina Notes: This is a closed book and closed

More information

Global Securities & Investment Management Target Audience: Objectives:

Global Securities & Investment Management Target Audience: Objectives: Global Securities & Investment Management Target Audience: This course is focused at those who are seeking to acquire an overview of Finance, more specifically a foundation in capital markets, products,

More information

Introduction to Financial Mathematics

Introduction to Financial Mathematics Introduction to Financial Mathematics MTH 210 Fall 2016 Jie Zhong November 30, 2016 Mathematics Department, UR Table of Contents Arbitrage Interest Rates, Discounting, and Basic Assets Forward Contracts

More information

Risk Management Using Derivatives Securities

Risk Management Using Derivatives Securities Risk Management Using Derivatives Securities 1 Definition of Derivatives A derivative is a financial instrument whose value is derived from the price of a more basic asset called the underlying asset.

More information

NEWCASTLE UNIVERSITY SCHOOL OF MATHEMATICS, STATISTICS & PHYSICS SEMESTER 1 SPECIMEN 2 MAS3904. Stochastic Financial Modelling. Time allowed: 2 hours

NEWCASTLE UNIVERSITY SCHOOL OF MATHEMATICS, STATISTICS & PHYSICS SEMESTER 1 SPECIMEN 2 MAS3904. Stochastic Financial Modelling. Time allowed: 2 hours NEWCASTLE UNIVERSITY SCHOOL OF MATHEMATICS, STATISTICS & PHYSICS SEMESTER 1 SPECIMEN 2 Stochastic Financial Modelling Time allowed: 2 hours Candidates should attempt all questions. Marks for each question

More information

Department of Mathematics. Mathematics of Financial Derivatives

Department of Mathematics. Mathematics of Financial Derivatives Department of Mathematics MA408 Mathematics of Financial Derivatives Thursday 15th January, 2009 2pm 4pm Duration: 2 hours Attempt THREE questions MA408 Page 1 of 5 1. (a) Suppose 0 < E 1 < E 3 and E 2

More information

Lecture Quantitative Finance Spring Term 2015

Lecture Quantitative Finance Spring Term 2015 implied Lecture Quantitative Finance Spring Term 2015 : May 7, 2015 1 / 28 implied 1 implied 2 / 28 Motivation and setup implied the goal of this chapter is to treat the implied which requires an algorithm

More information

( ) since this is the benefit of buying the asset at the strike price rather

( ) since this is the benefit of buying the asset at the strike price rather Review of some financial models for MAT 483 Parity and Other Option Relationships The basic parity relationship for European options with the same strike price and the same time to expiration is: C( KT

More information

The Forward PDE for American Puts in the Dupire Model

The Forward PDE for American Puts in the Dupire Model The Forward PDE for American Puts in the Dupire Model Peter Carr Ali Hirsa Courant Institute Morgan Stanley New York University 750 Seventh Avenue 51 Mercer Street New York, NY 10036 1 60-3765 (1) 76-988

More information

TRUE/FALSE 1 (2) TRUE FALSE 2 (2) TRUE FALSE. MULTIPLE CHOICE 1 (5) a b c d e 3 (2) TRUE FALSE 4 (2) TRUE FALSE. 2 (5) a b c d e 5 (2) TRUE FALSE

TRUE/FALSE 1 (2) TRUE FALSE 2 (2) TRUE FALSE. MULTIPLE CHOICE 1 (5) a b c d e 3 (2) TRUE FALSE 4 (2) TRUE FALSE. 2 (5) a b c d e 5 (2) TRUE FALSE Tuesday, February 26th M339W/389W Financial Mathematics for Actuarial Applications Spring 2013, University of Texas at Austin In-Term Exam I Instructor: Milica Čudina Notes: This is a closed book and closed

More information

Review of Derivatives I. Matti Suominen, Aalto

Review of Derivatives I. Matti Suominen, Aalto Review of Derivatives I Matti Suominen, Aalto 25 SOME STATISTICS: World Financial Markets (trillion USD) 2 15 1 5 Securitized loans Corporate bonds Financial institutions' bonds Public debt Equity market

More information

Introduction to Financial Derivatives

Introduction to Financial Derivatives 55.444 Introduction to Financial Derivatives November 5, 212 Option Analysis and Modeling The Binomial Tree Approach Where we are Last Week: Options (Chapter 9-1, OFOD) This Week: Option Analysis and Modeling:

More information

Advanced Corporate Finance. 5. Options (a refresher)

Advanced Corporate Finance. 5. Options (a refresher) Advanced Corporate Finance 5. Options (a refresher) Objectives of the session 1. Define options (calls and puts) 2. Analyze terminal payoff 3. Define basic strategies 4. Binomial option pricing model 5.

More information

Lahore University of Management Sciences. FINN 453 Financial Derivatives Spring Semester 2017

Lahore University of Management Sciences. FINN 453 Financial Derivatives Spring Semester 2017 Instructor Ferhana Ahmad Room No. 314 Office Hours TBA Email ferhana.ahmad@lums.edu.pk Telephone +92 42 3560 8044 Secretary/TA Sec: Bilal Alvi/ TA: TBA TA Office Hours TBA Course URL (if any) http://suraj.lums.edu.pk/~ro/

More information

Mathematics of Financial Derivatives. Zero-coupon rates and bond pricing. Lecture 9. Zero-coupons. Notes. Notes

Mathematics of Financial Derivatives. Zero-coupon rates and bond pricing. Lecture 9. Zero-coupons. Notes. Notes Mathematics of Financial Derivatives Lecture 9 Solesne Bourguin bourguin@math.bu.edu Boston University Department of Mathematics and Statistics Zero-coupon rates and bond pricing Zero-coupons Definition:

More information

Chapter 14 Exotic Options: I

Chapter 14 Exotic Options: I Chapter 14 Exotic Options: I Question 14.1. The geometric averages for stocks will always be lower. Question 14.2. The arithmetic average is 5 (three 5 s, one 4, and one 6) and the geometric average is

More information

Mathematics of Financial Derivatives

Mathematics of Financial Derivatives Mathematics of Financial Derivatives Lecture 9 Solesne Bourguin bourguin@math.bu.edu Boston University Department of Mathematics and Statistics Table of contents 1. Zero-coupon rates and bond pricing 2.

More information

ASC301 A Financial Mathematics 2:00-3:50 pm TR Maxon 104

ASC301 A Financial Mathematics 2:00-3:50 pm TR Maxon 104 ASC301 A Financial Mathematics 2:00-3:50 pm TR Maxon 104 Instructor: John Symms Office: Math House 204 Phone: 524-7143 (email preferred) Email: jsymms@carrollu.edu URL: Go to the Courses tab at my.carrollu.edu.

More information

B. Combinations. 1. Synthetic Call (Put-Call Parity). 2. Writing a Covered Call. 3. Straddle, Strangle. 4. Spreads (Bull, Bear, Butterfly).

B. Combinations. 1. Synthetic Call (Put-Call Parity). 2. Writing a Covered Call. 3. Straddle, Strangle. 4. Spreads (Bull, Bear, Butterfly). 1 EG, Ch. 22; Options I. Overview. A. Definitions. 1. Option - contract in entitling holder to buy/sell a certain asset at or before a certain time at a specified price. Gives holder the right, but not

More information

Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices

Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg

More information

CHAPTER 9. Solutions. Exercise The payoff diagrams will look as in the figure below.

CHAPTER 9. Solutions. Exercise The payoff diagrams will look as in the figure below. CHAPTER 9 Solutions Exercise 1 1. The payoff diagrams will look as in the figure below. 2. Gross payoff at expiry will be: P(T) = min[(1.23 S T ), 0] + min[(1.10 S T ), 0] where S T is the EUR/USD exchange

More information

P&L Attribution and Risk Management

P&L Attribution and Risk Management P&L Attribution and Risk Management Liuren Wu Options Markets (Hull chapter: 15, Greek letters) Liuren Wu ( c ) P& Attribution and Risk Management Options Markets 1 / 19 Outline 1 P&L attribution via the

More information

Math 623 (IOE 623), Winter 2008: Final exam

Math 623 (IOE 623), Winter 2008: Final exam Math 623 (IOE 623), Winter 2008: Final exam Name: Student ID: This is a closed book exam. You may bring up to ten one sided A4 pages of notes to the exam. You may also use a calculator but not its memory

More information

Lahore University of Management Sciences. FINN- 453 Financial Derivatives Spring Semester 2015

Lahore University of Management Sciences. FINN- 453 Financial Derivatives Spring Semester 2015 Instructor Ferhana Ahmed Room No. TBA Office Hours TBA Email ferhana.ahmad@lums.edu.pk Telephone 8044 Secretary/TA TBA TA Office Hours TBA Course URL (if any) Suraj.lums.edu.pk FINN- 453 Financial Derivatives

More information

Option Properties Liuren Wu

Option Properties Liuren Wu Option Properties Liuren Wu Options Markets (Hull chapter: 9) Liuren Wu ( c ) Option Properties Options Markets 1 / 17 Notation c: European call option price. C American call price. p: European put option

More information

King s College London

King s College London King s College London University Of London This paper is part of an examination of the College counting towards the award of a degree. Examinations are governed by the College Regulations under the authority

More information

Introduction to Financial Derivatives

Introduction to Financial Derivatives 55.444 Introduction to Financial Derivatives Weeks of November 19 & 6 th, 1 he Black-Scholes-Merton Model for Options plus Applications Where we are Previously: Modeling the Stochastic Process for Derivative

More information

Financial Markets & Risk

Financial Markets & Risk Financial Markets & Risk Dr Cesario MATEUS Senior Lecturer in Finance and Banking Room QA259 Department of Accounting and Finance c.mateus@greenwich.ac.uk www.cesariomateus.com Session 3 Derivatives Binomial

More information

Name: T/F 2.13 M.C. Σ

Name: T/F 2.13 M.C. Σ Name: M339D=M389D Introduction to Actuarial Financial Mathematics University of Texas at Austin In-Term Exam II Instructor: Milica Čudina Notes: This is a closed book and closed notes exam. The maximal

More information

FINANCIAL OPTION ANALYSIS HANDOUTS

FINANCIAL OPTION ANALYSIS HANDOUTS FINANCIAL OPTION ANALYSIS HANDOUTS 1 2 FAIR PRICING There is a market for an object called S. The prevailing price today is S 0 = 100. At this price the object S can be bought or sold by anyone for any

More information

Financial Risk Measurement/Management

Financial Risk Measurement/Management 550.446 Financial Risk Measurement/Management Week of September 23, 2013 Interest Rate Risk & Value at Risk (VaR) 3.1 Where we are Last week: Introduction continued; Insurance company and Investment company

More information

Introduction. Financial Economics Slides

Introduction. Financial Economics Slides Introduction. Financial Economics Slides Howard C. Mahler, FCAS, MAAA These are slides that I have presented at a seminar or weekly class. The whole syllabus of Exam MFE is covered. At the end is my section

More information

The Johns Hopkins Carey Business School. Derivatives. Spring Final Exam

The Johns Hopkins Carey Business School. Derivatives. Spring Final Exam The Johns Hopkins Carey Business School Derivatives Spring 2010 Instructor: Bahattin Buyuksahin Final Exam Final DUE ON WEDNESDAY, May 19th, 2010 Late submissions will not be graded. Show your calculations.

More information

Week 5. Options: Basic Concepts

Week 5. Options: Basic Concepts Week 5 Options: Basic Concepts Definitions (1/2) Although, many different types of options, some quite exotic, have been introduced into the market, we shall only deal with the simplest plain-vanilla options

More information

Option Pricing. Simple Arbitrage Relations. Payoffs to Call and Put Options. Black-Scholes Model. Put-Call Parity. Implied Volatility

Option Pricing. Simple Arbitrage Relations. Payoffs to Call and Put Options. Black-Scholes Model. Put-Call Parity. Implied Volatility Simple Arbitrage Relations Payoffs to Call and Put Options Black-Scholes Model Put-Call Parity Implied Volatility Option Pricing Options: Definitions A call option gives the buyer the right, but not the

More information

CONTENTS Put-call parity Dividends and carrying costs Problems

CONTENTS Put-call parity Dividends and carrying costs Problems Contents 1 Interest Rates 5 1.1 Rate of return........................... 5 1.2 Interest rates........................... 6 1.3 Interest rate conventions..................... 7 1.4 Continuous compounding.....................

More information

Any asset that derives its value from another underlying asset is called a derivative asset. The underlying asset could be any asset - for example, a

Any asset that derives its value from another underlying asset is called a derivative asset. The underlying asset could be any asset - for example, a Options Week 7 What is a derivative asset? Any asset that derives its value from another underlying asset is called a derivative asset. The underlying asset could be any asset - for example, a stock, bond,

More information

Financial Derivatives Section 5

Financial Derivatives Section 5 Financial Derivatives Section 5 The Black and Scholes Model Michail Anthropelos anthropel@unipi.gr http://web.xrh.unipi.gr/faculty/anthropelos/ University of Piraeus Spring 2018 M. Anthropelos (Un. of

More information

Lecture 1 Definitions from finance

Lecture 1 Definitions from finance Lecture 1 s from finance Financial market instruments can be divided into two types. There are the underlying stocks shares, bonds, commodities, foreign currencies; and their derivatives, claims that promise

More information

Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester

Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester Derivative Securities Fall 2012 Final Exam Guidance Extended version includes full semester Our exam is Wednesday, December 19, at the normal class place and time. You may bring two sheets of notes (8.5

More information

Lecture 9: Practicalities in Using Black-Scholes. Sunday, September 23, 12

Lecture 9: Practicalities in Using Black-Scholes. Sunday, September 23, 12 Lecture 9: Practicalities in Using Black-Scholes Major Complaints Most stocks and FX products don t have log-normal distribution Typically fat-tailed distributions are observed Constant volatility assumed,

More information

Evaluating the Black-Scholes option pricing model using hedging simulations

Evaluating the Black-Scholes option pricing model using hedging simulations Bachelor Informatica Informatica Universiteit van Amsterdam Evaluating the Black-Scholes option pricing model using hedging simulations Wendy Günther CKN : 6052088 Wendy.Gunther@student.uva.nl June 24,

More information

FNCE 302, Investments H Guy Williams, 2008

FNCE 302, Investments H Guy Williams, 2008 Sources http://finance.bi.no/~bernt/gcc_prog/recipes/recipes/node7.html It's all Greek to me, Chris McMahon Futures; Jun 2007; 36, 7 http://www.quantnotes.com Put Call Parity THIS IS THE CALL-PUT PARITY

More information

Outline Types Measures Spot rate Bond pricing Bootstrap Forward rates FRA Duration Convexity Term structure. Interest Rates.

Outline Types Measures Spot rate Bond pricing Bootstrap Forward rates FRA Duration Convexity Term structure. Interest Rates. Haipeng Xing Department of Applied Mathematics and Statistics Outline 1 Types of interest rates 2 Measuring interest rates 3 The n-year spot rate 4 ond pricing 5 Determining treasury zero rates the bootstrap

More information

MATH3075/3975 FINANCIAL MATHEMATICS TUTORIAL PROBLEMS

MATH3075/3975 FINANCIAL MATHEMATICS TUTORIAL PROBLEMS MATH307/37 FINANCIAL MATHEMATICS TUTORIAL PROBLEMS School of Mathematics and Statistics Semester, 04 Tutorial problems should be used to test your mathematical skills and understanding of the lecture material.

More information

JEM034 Corporate Finance Winter Semester 2017/2018

JEM034 Corporate Finance Winter Semester 2017/2018 JEM034 Corporate Finance Winter Semester 2017/2018 Lecture #5 Olga Bychkova Topics Covered Today Risk and the Cost of Capital (chapter 9 in BMA) Understading Options (chapter 20 in BMA) Valuing Options

More information