NAME: (write your name here!!)

Size: px
Start display at page:

Download "NAME: (write your name here!!)"

Transcription

1 NAME: (write your name here!!) FIN285a: Computer Simulations and Risk Assessment Midterm Exam II: Wednesday, November 16, 2016 Fall 2016: Professor B. LeBaron Directions: Answer all questions. You have 1 hour 15 minutes. Point weightings are listed next to each problem. There are 100 points total. Answer what you know first, and then go back to other problems. Stay calm, and good luck. Part I: Interpreting matlab code: In the following problems you will be asked to interpret some example matlab programs. 1. (3 points each part) What is the output of the following matlab programs: a.) x = -5:5 find(x<0) [ ] b.) prod(2:4) 24 c.) gpcdf(0,1/5,5) 0 d.) datestr(1) % approximate answers are fine 01-Jan-0000 (any date, or format close to this is totally fine) Fin285a Page 1 of 6 Midterm Two: Fall 2016

2 2. (16 points) Answer this question referring to the following matlab code: n = 10000; p1 = randn(n,1); p0=100; v0=100; v1 = 101+(p1-101).^3; v1star = quantile(v1,0.01); v = -(v1star-v0) p2 = norminv(0.01,101,1); v1a = v0 + 3*(p2-p0); vv = -(v1a-v0) a.) What is v estimating? Be specific here. (Hint: it is a type of VaR.) Monte-carlo VaR, p = 0.01 b.) What is vv estimating? Be specific here. (Hint: it is a type of VaR) Delta normal VaR, p = 0.01 c.) If you know that the v1 function is correct, and p1 represents the true distribution of future prices, then which VaR number would you prefer, v, vv, or are you indifferent? v because the monte-carlo with the true v function is better d.) Can you predict what would happen if we changed the v1 equation to, v1 = 101+(p1-101)? (a linear relationship) How close would vv and v be? With a linear function, the linear approximation to v1 is exact. The values for v and vv should be almost the same. (Actually, delta-normal would be the correct VaR to use here.) Fin285a Page 2 of 6 Midterm Two: Fall 2016

3 3. (16 points) Answer this question referring to the following matlab code: % ret1 are one day log returns h = 40; for i = 1: ret1bs = datasample(ret1,h) port40daysbs(i) = prod(exp(ret1bs))*100; end var1 = 100-quantile(port40daysbs,0.01); index = 1:nsamp-(h-1); for i = 1: start = datasample(index,1); ret1bs = ret1(start:startt+(h-1)); port40daybs(i) = prod(exp(ret1bs))*100; end var2 = 100-quantile(port40daysbs,0.01); a.) Does the first for loop and VaR calculation assume that returns are normally distributed (yes or no)? yes, iid bootstrap b.) Does the first for loop assume that returns are independent over time (yes or no)? Yes, iid bootstrap c.) What type of bootstrap is the second loop doing? Block bootstrap d.) In our examples from class which of the two VaR measures (var1 or var2) was larger? Var2 Fin285a Page 3 of 6 Midterm Two: Fall 2016

4 4.) (16 points) Answer this question referring to the following matlab code: load retus.mat; % ret = one day arithmetic returns ret1 = log(1+ret); rr1 = ret; s = std(ret1); m = mean(ret1); r1 = studenttinv(0.01,4,m,s); p1 = 100*exp(r1); v1 = -(p1-100); m1 = mean(rr1); s1 = std(rr1); rs = norminv(0.01,m1, s1); rt = -s1*normpdf( (rs-m1)/s1)/ m1; x = -100*rt; a) What is the value v1 measuring? (risk measure, horizon, prob) VaR, p = 0.01, 1 Day b.) What did it assume about returns (log or arithmetic, distribution)? Log, student-t c.) What is x estimating? What assumptions are made about return distributions? Arithmetic returns are normally distributed d.) Is it necessary for the program to estimate m1 and s1 given that it already knew m, s? (Yes or no, why or why not.) Yes, because we need the mean and standard deviation for the arithmetic returns, not the geometric ones. Fin285a Page 4 of 6 Midterm Two: Fall 2016

5 Part II. Multiple choice (3 points each): Circle the one best answer from the choices. 5.) The skew of a log normal distribution is always >a.) positive b.) negative c.) infinite d.) 3 6.) Confidence intervals a.) make you confident about your estimate b.) always require a bootstrap simulation >c.) contain the true value with high probability d.) have to be symmetric. 7.) In class we used parametric formulas for expected shortfall. For these formulas to work which of the following assumptions do we need? >a.) Arithmetic returns needed to follow a normal distribution. b.) Log returns needed to follow a normal distribution. c.) Returns could follow any distribution. d.) Returns needed to follow a student-t distribution. 8.) Estimating a Generalized Pareto Distribution GPD gives an estimate of the tail exponent. This value tells you a.) which moments exist. b.) a relationship between VaR and expected shortfall. c.) the slope for linear scaling relationships in log/log plots. >d.) all of the above. 9.) Returns follow a student-t distribution with 3 degrees of freedom. What is their kurtosis? a.) 3 b.) 4 c.) 5 >d.) undefined, or infinite 10.) You are 100 percent sure that your risk factors follow a well-defined normal distribution, and you know all the parameters. Also, you face a complicated nonlinear valuation formula for your portfolio. You best option for risk evaluation is a.) historical >b.) monte-carlo c.) bootstrap d.) delta-normal Fin285a Page 5 of 6 Midterm Two: Fall 2016

6 Part III. Very short answer. Answer the following with numbers or a few words. 11. (12 points) Consider a world where the daily log return, r, for your portfolio follows a normal distribution with mean 0, and standard deviation, s=0.5. Log returns are independent over time. The initial price is 100. a.) What is the std for the 4 day log return? S4 = Sqrt(4) * 0.5 = 1 b.) What is the final formula for the 4 day VaR at the level? Assume for simplicity that the quantile for a standard normal is -2. You may need to leave an exp(x) in your answer, and this is fine. Rstar = -2*s4 = -2, VaR = -(100exp(-2) 100) 12. (5 points) You have a portfolio with a future price in one day. Can you estimate the VaR(0), or maximum possible loss when one day log returns are normally distributed? P(t+1) = P(t)exp(r(t+1)), P(t) = 100. (portfolio = 1 share) Yes, 100, min (P(t+1)) = 0, VaR = = (5 points) You have used a generalized Pareto CDF to find that the prob(x<=0.10 X>0.05) = You also know that the prob(x<=0.05) = information to find the prob(x>0.1). Use this Prob((X>0.10) (X>0.05)) = = 0.2 Prob((X>0.10)&((X>0.05) = Prob((X>0.10) (X>0.05))*Prob(X>0.05) = 0.2 * (1-0.99) = Fin285a Page 6 of 6 Midterm Two: Fall 2016

Part I: Interpreting matlab code: In the following problems you will be asked to interpret some example matlab programs.

Part I: Interpreting matlab code: In the following problems you will be asked to interpret some example matlab programs. FIN285a: Computer Simulations and Risk Management Midterm Exam: Wednesday, October 30th. Fall 2013 Professor B. LeBaron Directions: Answer all questions. You have 1 hour and 30 minutes. Point weightings

More information

Financial Econometrics Jeffrey R. Russell Midterm 2014

Financial Econometrics Jeffrey R. Russell Midterm 2014 Name: Financial Econometrics Jeffrey R. Russell Midterm 2014 You have 2 hours to complete the exam. Use can use a calculator and one side of an 8.5x11 cheat sheet. Try to fit all your work in the space

More information

Linda Allen, Jacob Boudoukh and Anthony Saunders, Understanding Market, Credit and Operational Risk: The Value at Risk Approach

Linda Allen, Jacob Boudoukh and Anthony Saunders, Understanding Market, Credit and Operational Risk: The Value at Risk Approach P1.T4. Valuation & Risk Models Linda Allen, Jacob Boudoukh and Anthony Saunders, Understanding Market, Credit and Operational Risk: The Value at Risk Approach Bionic Turtle FRM Study Notes Reading 26 By

More information

Financial Econometrics Jeffrey R. Russell. Midterm 2014 Suggested Solutions. TA: B. B. Deng

Financial Econometrics Jeffrey R. Russell. Midterm 2014 Suggested Solutions. TA: B. B. Deng Financial Econometrics Jeffrey R. Russell Midterm 2014 Suggested Solutions TA: B. B. Deng Unless otherwise stated, e t is iid N(0,s 2 ) 1. (12 points) Consider the three series y1, y2, y3, and y4. Match

More information

INTRODUCTION TO PORTFOLIO ANALYSIS. Dimensions of Portfolio Performance

INTRODUCTION TO PORTFOLIO ANALYSIS. Dimensions of Portfolio Performance INTRODUCTION TO PORTFOLIO ANALYSIS Dimensions of Portfolio Performance Interpretation of Portfolio Returns Portfolio Return Analysis Conclusions About Past Performance Predictions About Future Performance

More information

Fat tails and 4th Moments: Practical Problems of Variance Estimation

Fat tails and 4th Moments: Practical Problems of Variance Estimation Fat tails and 4th Moments: Practical Problems of Variance Estimation Blake LeBaron International Business School Brandeis University www.brandeis.edu/~blebaron QWAFAFEW May 2006 Asset Returns and Fat Tails

More information

Market Risk Analysis Volume IV. Value-at-Risk Models

Market Risk Analysis Volume IV. Value-at-Risk Models Market Risk Analysis Volume IV Value-at-Risk Models Carol Alexander John Wiley & Sons, Ltd List of Figures List of Tables List of Examples Foreword Preface to Volume IV xiii xvi xxi xxv xxix IV.l Value

More information

Introduction to Algorithmic Trading Strategies Lecture 8

Introduction to Algorithmic Trading Strategies Lecture 8 Introduction to Algorithmic Trading Strategies Lecture 8 Risk Management Haksun Li haksun.li@numericalmethod.com www.numericalmethod.com Outline Value at Risk (VaR) Extreme Value Theory (EVT) References

More information

Calculating VaR. There are several approaches for calculating the Value at Risk figure. The most popular are the

Calculating VaR. There are several approaches for calculating the Value at Risk figure. The most popular are the VaR Pro and Contra Pro: Easy to calculate and to understand. It is a common language of communication within the organizations as well as outside (e.g. regulators, auditors, shareholders). It is not really

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2014, Mr. Ruey S. Tsay. Solutions to Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2014, Mr. Ruey S. Tsay. Solutions to Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2014, Mr. Ruey S. Tsay Solutions to Midterm Problem A: (30 pts) Answer briefly the following questions. Each question has

More information

Midterm Exam. b. What are the continuously compounded returns for the two stocks?

Midterm Exam. b. What are the continuously compounded returns for the two stocks? University of Washington Fall 004 Department of Economics Eric Zivot Economics 483 Midterm Exam This is a closed book and closed note exam. However, you are allowed one page of notes (double-sided). Answer

More information

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Midterm

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Midterm Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay Midterm GSB Honor Code: I pledge my honor that I have not violated the Honor Code during this examination.

More information

CHAPTER 5. Introduction to Risk, Return, and the Historical Record INVESTMENTS BODIE, KANE, MARCUS

CHAPTER 5. Introduction to Risk, Return, and the Historical Record INVESTMENTS BODIE, KANE, MARCUS CHAPTER 5 Introduction to Risk, Return, and the Historical Record INVESTMENTS BODIE, KANE, MARCUS McGraw-Hill/Irwin Copyright 2011 by The McGraw-Hill Companies, Inc. All rights reserved. 5-2 Supply Interest

More information

1.1 Calculate VaR using a historical simulation approach. Historical simulation approach ( )

1.1 Calculate VaR using a historical simulation approach. Historical simulation approach ( ) 1.1 Calculate VaR using a historical simulation approach. Historical simulation approach ( ) (1) The simplest way to estimate VaR is by means of historical simulation (HS). The HS approach estimates VaR

More information

CHAPTER 5. Introduction to Risk, Return, and the Historical Record INVESTMENTS BODIE, KANE, MARCUS. McGraw-Hill/Irwin

CHAPTER 5. Introduction to Risk, Return, and the Historical Record INVESTMENTS BODIE, KANE, MARCUS. McGraw-Hill/Irwin CHAPTER 5 Introduction to Risk, Return, and the Historical Record McGraw-Hill/Irwin Copyright 2011 by The McGraw-Hill Companies, Inc. All rights reserved. 5-2 Interest Rate Determinants Supply Households

More information

KARACHI UNIVERSITY BUSINESS SCHOOL UNIVERSITY OF KARACHI BS (BBA) VI

KARACHI UNIVERSITY BUSINESS SCHOOL UNIVERSITY OF KARACHI BS (BBA) VI 88 P a g e B S ( B B A ) S y l l a b u s KARACHI UNIVERSITY BUSINESS SCHOOL UNIVERSITY OF KARACHI BS (BBA) VI Course Title : STATISTICS Course Number : BA(BS) 532 Credit Hours : 03 Course 1. Statistical

More information

Slides for Risk Management

Slides for Risk Management Slides for Risk Management Introduction to the modeling of assets Groll Seminar für Finanzökonometrie Prof. Mittnik, PhD Groll (Seminar für Finanzökonometrie) Slides for Risk Management Prof. Mittnik,

More information

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Solutions to Final Exam

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Solutions to Final Exam Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (30 pts) Answer briefly the following questions. 1. Suppose that

More information

ROM SIMULATION Exact Moment Simulation using Random Orthogonal Matrices

ROM SIMULATION Exact Moment Simulation using Random Orthogonal Matrices ROM SIMULATION Exact Moment Simulation using Random Orthogonal Matrices Bachelier Finance Society Meeting Toronto 2010 Henley Business School at Reading Contact Author : d.ledermann@icmacentre.ac.uk Alexander

More information

MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL

MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL Isariya Suttakulpiboon MSc in Risk Management and Insurance Georgia State University, 30303 Atlanta, Georgia Email: suttakul.i@gmail.com,

More information

Fin285a:Computer Simulations and Risk Assessment Section 7.1 Modeling Volatility: basic models Daníelson, ,

Fin285a:Computer Simulations and Risk Assessment Section 7.1 Modeling Volatility: basic models Daníelson, , Fin285a:Computer Simulations and Risk Assessment Section 7.1 Modeling Volatility: basic models Daníelson, 2.1-2.3, 2.7-2.8 Overview Moving average model Exponentially weighted moving average (EWMA) GARCH

More information

Name: CS3130: Probability and Statistics for Engineers Practice Final Exam Instructions: You may use any notes that you like, but no calculators or computers are allowed. Be sure to show all of your work.

More information

CHAPTER 5. Introduction to Risk, Return, and the Historical Record INVESTMENTS BODIE, KANE, MARCUS. McGraw-Hill/Irwin

CHAPTER 5. Introduction to Risk, Return, and the Historical Record INVESTMENTS BODIE, KANE, MARCUS. McGraw-Hill/Irwin CHAPTER 5 Introduction to Risk, Return, and the Historical Record McGraw-Hill/Irwin Copyright 2011 by The McGraw-Hill Companies, Inc. All rights reserved. 5-2 Interest Rate Determinants Supply Households

More information

Statistics and Finance

Statistics and Finance David Ruppert Statistics and Finance An Introduction Springer Notation... xxi 1 Introduction... 1 1.1 References... 5 2 Probability and Statistical Models... 7 2.1 Introduction... 7 2.2 Axioms of Probability...

More information

Rationale. Learning about return and risk from the historical record and beta estimation. T Bills and Inflation

Rationale. Learning about return and risk from the historical record and beta estimation. T Bills and Inflation Learning about return and risk from the historical record and beta estimation Reference: Investments, Bodie, Kane, and Marcus, and Investment Analysis and Behavior, Nofsinger and Hirschey Nattawut Jenwittayaroje,

More information

Fall 2011 Exam Score: /75. Exam 3

Fall 2011 Exam Score: /75. Exam 3 Math 12 Fall 2011 Name Exam Score: /75 Total Class Percent to Date Exam 3 For problems 1-10, circle the letter next to the response that best answers the question or completes the sentence. You do not

More information

Midterm 3. Math Summer Last Name: First Name: Student Number: Section (circle one): 921 (Warren Code) or 922 (Marc Carnovale)

Midterm 3. Math Summer Last Name: First Name: Student Number: Section (circle one): 921 (Warren Code) or 922 (Marc Carnovale) Math 184 - Summer 2011 Midterm 3 Last Name: First Name: Student Number: Section (circle one): 921 (Warren Code) or 922 (Marc Carnovale) Read all of the following information before starting the exam: Calculators

More information

Valuation of Asian Option. Qi An Jingjing Guo

Valuation of Asian Option. Qi An Jingjing Guo Valuation of Asian Option Qi An Jingjing Guo CONTENT Asian option Pricing Monte Carlo simulation Conclusion ASIAN OPTION Definition of Asian option always emphasizes the gist that the payoff depends on

More information

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Final Exam

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Final Exam Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay Final Exam GSB Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

Master s in Financial Engineering Foundations of Buy-Side Finance: Quantitative Risk and Portfolio Management. > Teaching > Courses

Master s in Financial Engineering Foundations of Buy-Side Finance: Quantitative Risk and Portfolio Management.  > Teaching > Courses Master s in Financial Engineering Foundations of Buy-Side Finance: Quantitative Risk and Portfolio Management www.symmys.com > Teaching > Courses Spring 2008, Monday 7:10 pm 9:30 pm, Room 303 Attilio Meucci

More information

I. Return Calculations (20 pts, 4 points each)

I. Return Calculations (20 pts, 4 points each) University of Washington Winter 015 Department of Economics Eric Zivot Econ 44 Midterm Exam Solutions This is a closed book and closed note exam. However, you are allowed one page of notes (8.5 by 11 or

More information

Cambridge University Press Risk Modelling in General Insurance: From Principles to Practice Roger J. Gray and Susan M.

Cambridge University Press Risk Modelling in General Insurance: From Principles to Practice Roger J. Gray and Susan M. adjustment coefficient, 272 and Cramér Lundberg approximation, 302 existence, 279 and Lundberg s inequality, 272 numerical methods for, 303 properties, 272 and reinsurance (case study), 348 statistical

More information

Risk e-learning. Modules Overview.

Risk e-learning. Modules Overview. Risk e-learning Modules Overview Risk Sensitivities Market Risk Foundation (Banks) Understand delta risk sensitivity as an introduction to a broader set of risk sensitivities Explore the principles of

More information

Week 1 Quantitative Analysis of Financial Markets Distributions B

Week 1 Quantitative Analysis of Financial Markets Distributions B Week 1 Quantitative Analysis of Financial Markets Distributions B Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg : 6828 0364 : LKCSB 5036 October

More information

Using Fat Tails to Model Gray Swans

Using Fat Tails to Model Gray Swans Using Fat Tails to Model Gray Swans Paul D. Kaplan, Ph.D., CFA Vice President, Quantitative Research Morningstar, Inc. 2008 Morningstar, Inc. All rights reserved. Swans: White, Black, & Gray The Black

More information

Stat 328, Summer 2005

Stat 328, Summer 2005 Stat 328, Summer 2005 Exam #2, 6/18/05 Name (print) UnivID I have neither given nor received any unauthorized aid in completing this exam. Signed Answer each question completely showing your work where

More information

ก ก ก ก ก ก ก. ก (Food Safety Risk Assessment Workshop) 1 : Fundamental ( ก ( NAC 2010)) 2 3 : Excel and Statistics Simulation Software\

ก ก ก ก ก ก ก. ก (Food Safety Risk Assessment Workshop) 1 : Fundamental ( ก ( NAC 2010)) 2 3 : Excel and Statistics Simulation Software\ ก ก ก ก (Food Safety Risk Assessment Workshop) ก ก ก ก ก ก ก ก 5 1 : Fundamental ( ก 29-30.. 53 ( NAC 2010)) 2 3 : Excel and Statistics Simulation Software\ 1 4 2553 4 5 : Quantitative Risk Modeling Microbial

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2009, Mr. Ruey S. Tsay. Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2009, Mr. Ruey S. Tsay. Solutions to Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2009, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (42 pts) Answer briefly the following questions. 1. Questions

More information

P VaR0.01 (X) > 2 VaR 0.01 (X). (10 p) Problem 4

P VaR0.01 (X) > 2 VaR 0.01 (X). (10 p) Problem 4 KTH Mathematics Examination in SF2980 Risk Management, December 13, 2012, 8:00 13:00. Examiner : Filip indskog, tel. 790 7217, e-mail: lindskog@kth.se Allowed technical aids and literature : a calculator,

More information

Models of Patterns. Lecture 3, SMMD 2005 Bob Stine

Models of Patterns. Lecture 3, SMMD 2005 Bob Stine Models of Patterns Lecture 3, SMMD 2005 Bob Stine Review Speculative investing and portfolios Risk and variance Volatility adjusted return Volatility drag Dependence Covariance Review Example Stock and

More information

Econ 101A Midterm 1 Th 28 February 2008.

Econ 101A Midterm 1 Th 28 February 2008. Econ 0A Midterm Th 28 February 2008. You have approximately hour and 20 minutes to answer the questions in the midterm. Dan and Mariana will collect the exams at.00 sharp. Show your work, and good luck!

More information

Review: Population, sample, and sampling distributions

Review: Population, sample, and sampling distributions Review: Population, sample, and sampling distributions A population with mean µ and standard deviation σ For instance, µ = 0, σ = 1 0 1 Sample 1, N=30 Sample 2, N=30 Sample 100000000000 InterquartileRange

More information

MATH 10 INTRODUCTORY STATISTICS

MATH 10 INTRODUCTORY STATISTICS MATH 10 INTRODUCTORY STATISTICS Tommy Khoo Your friendly neighbourhood graduate student. Midterm Exam ٩(^ᴗ^)۶ In class, next week, Thursday, 26 April. 1 hour, 45 minutes. 5 questions of varying lengths.

More information

Two Hours. Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER. 22 January :00 16:00

Two Hours. Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER. 22 January :00 16:00 Two Hours MATH38191 Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER STATISTICAL MODELLING IN FINANCE 22 January 2015 14:00 16:00 Answer ALL TWO questions

More information

Three Components of a Premium

Three Components of a Premium Three Components of a Premium The simple pricing approach outlined in this module is the Return-on-Risk methodology. The sections in the first part of the module describe the three components of a premium

More information

Financial Econometrics Notes. Kevin Sheppard University of Oxford

Financial Econometrics Notes. Kevin Sheppard University of Oxford Financial Econometrics Notes Kevin Sheppard University of Oxford Monday 15 th January, 2018 2 This version: 22:52, Monday 15 th January, 2018 2018 Kevin Sheppard ii Contents 1 Probability, Random Variables

More information

P2.T5. Market Risk Measurement & Management

P2.T5. Market Risk Measurement & Management P2.T5. Market Risk Measurement & Management Kevin Dowd, Measuring Market Risk Bionic Turtle FRM Study Notes By David Harper, CFA FRM CIPM and Deepa Raju www.bionicturtle.com Dowd Chapter 3: Estimating

More information

Certified Quantitative Financial Modeling Professional VS-1243

Certified Quantitative Financial Modeling Professional VS-1243 Certified Quantitative Financial Modeling Professional VS-1243 Certified Quantitative Financial Modeling Professional Certification Code VS-1243 Vskills certification for Quantitative Financial Modeling

More information

Risk Reward Optimisation for Long-Run Investors: an Empirical Analysis

Risk Reward Optimisation for Long-Run Investors: an Empirical Analysis GoBack Risk Reward Optimisation for Long-Run Investors: an Empirical Analysis M. Gilli University of Geneva and Swiss Finance Institute E. Schumann University of Geneva AFIR / LIFE Colloquium 2009 München,

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay. Solutions to Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay. Solutions to Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay Solutions to Midterm Problem A: (30 pts) Answer briefly the following questions. Each question has

More information

CHAPTER TOPICS STATISTIK & PROBABILITAS. Copyright 2017 By. Ir. Arthur Daniel Limantara, MM, MT.

CHAPTER TOPICS STATISTIK & PROBABILITAS. Copyright 2017 By. Ir. Arthur Daniel Limantara, MM, MT. Distribusi Normal CHAPTER TOPICS The Normal Distribution The Standardized Normal Distribution Evaluating the Normality Assumption The Uniform Distribution The Exponential Distribution 2 CONTINUOUS PROBABILITY

More information

Math Winter 2014 Exam 1 January 30, PAGE 1 13 PAGE 2 11 PAGE 3 12 PAGE 4 14 Total 50

Math Winter 2014 Exam 1 January 30, PAGE 1 13 PAGE 2 11 PAGE 3 12 PAGE 4 14 Total 50 Name: Math 112 - Winter 2014 Exam 1 January 30, 2014 Section: Student ID Number: PAGE 1 13 PAGE 2 11 PAGE 3 12 PAGE 4 14 Total 50 After this cover page, there are 5 problems spanning 4 pages. Please make

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay. Solutions to Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay. Solutions to Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay Solutions to Midterm Problem A: (30 pts) Answer briefly the following questions. Each question has

More information

Business Statistics 41000: Probability 3

Business Statistics 41000: Probability 3 Business Statistics 41000: Probability 3 Drew D. Creal University of Chicago, Booth School of Business February 7 and 8, 2014 1 Class information Drew D. Creal Email: dcreal@chicagobooth.edu Office: 404

More information

Statistical Methods in Financial Risk Management

Statistical Methods in Financial Risk Management Statistical Methods in Financial Risk Management Lecture 1: Mapping Risks to Risk Factors Alexander J. McNeil Maxwell Institute of Mathematical Sciences Heriot-Watt University Edinburgh 2nd Workshop on

More information

Financial Econometrics

Financial Econometrics Financial Econometrics Introduction to Financial Econometrics Gerald P. Dwyer Trinity College, Dublin January 2016 Outline 1 Set Notation Notation for returns 2 Summary statistics for distribution of data

More information

Financial Econometrics (FinMetrics04) Time-series Statistics Concepts Exploratory Data Analysis Testing for Normality Empirical VaR

Financial Econometrics (FinMetrics04) Time-series Statistics Concepts Exploratory Data Analysis Testing for Normality Empirical VaR Financial Econometrics (FinMetrics04) Time-series Statistics Concepts Exploratory Data Analysis Testing for Normality Empirical VaR Nelson Mark University of Notre Dame Fall 2017 September 11, 2017 Introduction

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

The Two-Sample Independent Sample t Test

The Two-Sample Independent Sample t Test Department of Psychology and Human Development Vanderbilt University 1 Introduction 2 3 The General Formula The Equal-n Formula 4 5 6 Independence Normality Homogeneity of Variances 7 Non-Normality Unequal

More information

MBA 7020 Sample Final Exam

MBA 7020 Sample Final Exam Descriptive Measures, Confidence Intervals MBA 7020 Sample Final Exam Given the following sample of weight measurements (in pounds) of 25 children aged 4, answer the following questions(1 through 3): 45,

More information

A gentle introduction to the RM 2006 methodology

A gentle introduction to the RM 2006 methodology A gentle introduction to the RM 2006 methodology Gilles Zumbach RiskMetrics Group Av. des Morgines 12 1213 Petit-Lancy Geneva, Switzerland gilles.zumbach@riskmetrics.com Initial version: August 2006 This

More information

Financial Econometrics

Financial Econometrics Financial Econometrics Volatility Gerald P. Dwyer Trinity College, Dublin January 2013 GPD (TCD) Volatility 01/13 1 / 37 Squared log returns for CRSP daily GPD (TCD) Volatility 01/13 2 / 37 Absolute value

More information

EXCEL STATISTICAL Functions. Presented by Wayne Wilmeth

EXCEL STATISTICAL Functions. Presented by Wayne Wilmeth EXCEL STATISTICAL Functions Presented by Wayne Wilmeth Exponents 2 3 Exponents 2 3 2*2*2 = 8 Exponents Exponents Exponents Exponent Examples Roots? *? = 81? *? *? = 27 Roots =Sqrt(81) 9 Roots 27 1/3 27^(1/3)

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

Random Walks vs Random Variables. The Random Walk Model. Simple rate of return to an asset is: Simple rate of return

Random Walks vs Random Variables. The Random Walk Model. Simple rate of return to an asset is: Simple rate of return The Random Walk Model Assume the logarithm of 'with dividend' price, ln P(t), changes by random amounts through time: ln P(t) = ln P(t-1) + µ + ε(it) (1) where: P(t) is the sum of the price plus dividend

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

chapter 2-3 Normal Positive Skewness Negative Skewness

chapter 2-3 Normal Positive Skewness Negative Skewness chapter 2-3 Testing Normality Introduction In the previous chapters we discussed a variety of descriptive statistics which assume that the data are normally distributed. This chapter focuses upon testing

More information

(5) Multi-parameter models - Summarizing the posterior

(5) Multi-parameter models - Summarizing the posterior (5) Multi-parameter models - Summarizing the posterior Spring, 2017 Models with more than one parameter Thus far we have studied single-parameter models, but most analyses have several parameters For example,

More information

MFE/3F Questions Answer Key

MFE/3F Questions Answer Key MFE/3F Questions Download free full solutions from www.actuarialbrew.com, or purchase a hard copy from www.actexmadriver.com, or www.actuarialbookstore.com. Chapter 1 Put-Call Parity and Replication 1.01

More information

Quantitative Analysis

Quantitative Analysis EduPristine www.edupristine.com/ca Future value Value of current cash flow in Future Compounding Present value Present value of future cash flow Discounting Annuities Series of equal cash flows occurring

More information

The Impact of Outliers on Computing Conditional Risk Measures for Crude Oil and Natural Gas Commodity Futures Prices

The Impact of Outliers on Computing Conditional Risk Measures for Crude Oil and Natural Gas Commodity Futures Prices The Impact of on Computing Conditional Risk Measures for Crude Oil and Natural Gas Commodity Futures Prices Joe Byers, Ivilina Popova and Betty Simkins Presenter: Ivilina Popova Professor of Finance Department

More information

MFE/3F Questions Answer Key

MFE/3F Questions Answer Key MFE/3F Questions Download free full solutions from www.actuarialbrew.com, or purchase a hard copy from www.actexmadriver.com, or www.actuarialbookstore.com. Chapter 1 Put-Call Parity and Replication 1.01

More information

Rate of Change Quiz. Name: Class: Date: Multiple Choice Identify the choice that best completes the statement or answers the question.

Rate of Change Quiz. Name: Class: Date: Multiple Choice Identify the choice that best completes the statement or answers the question. Name: Class: Date: ID: A Multiple Choice Identify the choice that best completes the statement or answers the question.. In a linear equation, the independent variable increases at a constant rate while

More information

IEOR E4602: Quantitative Risk Management

IEOR E4602: Quantitative Risk Management IEOR E4602: Quantitative Risk Management Basic Concepts and Techniques of Risk Management Martin Haugh Department of Industrial Engineering and Operations Research Columbia University Email: martin.b.haugh@gmail.com

More information

- 1 - **** d(lns) = (µ (1/2)σ 2 )dt + σdw t

- 1 - **** d(lns) = (µ (1/2)σ 2 )dt + σdw t - 1 - **** These answers indicate the solutions to the 2014 exam questions. Obviously you should plot graphs where I have simply described the key features. It is important when plotting graphs to label

More information

Fin285a:Computer Simulations and Risk Assessment Section 3.2 Stylized facts of financial data Danielson,

Fin285a:Computer Simulations and Risk Assessment Section 3.2 Stylized facts of financial data Danielson, Fin285a:Computer Simulations and Risk Assessment Section 3.2 Stylized facts of financial data Danielson, 1.3-1.7 Blake LeBaron Fall 2016 1 Overview Autocorrelations and predictability Fat tails Volatility

More information

FINANCIAL ECONOMETRICS AND EMPIRICAL FINANCE MODULE 2

FINANCIAL ECONOMETRICS AND EMPIRICAL FINANCE MODULE 2 MSc. Finance/CLEFIN 2017/2018 Edition FINANCIAL ECONOMETRICS AND EMPIRICAL FINANCE MODULE 2 Midterm Exam Solutions June 2018 Time Allowed: 1 hour and 15 minutes Please answer all the questions by writing

More information

Rationale Reference Nattawut Jenwittayaroje, Ph.D., CFA Expected Return and Standard Deviation Example: Ending Price =

Rationale Reference Nattawut Jenwittayaroje, Ph.D., CFA Expected Return and Standard Deviation Example: Ending Price = Rationale Lecture 4: Learning about return and risk from the historical record Reference: Investments, Bodie, Kane, and Marcus, and Investment Analysis and Behavior, Nofsinger and Hirschey Nattawut Jenwittayaroje,

More information

Presented at the 2012 SCEA/ISPA Joint Annual Conference and Training Workshop -

Presented at the 2012 SCEA/ISPA Joint Annual Conference and Training Workshop - Applying the Pareto Principle to Distribution Assignment in Cost Risk and Uncertainty Analysis James Glenn, Computer Sciences Corporation Christian Smart, Missile Defense Agency Hetal Patel, Missile Defense

More information

Example 5 European call option (ECO) Consider an ECO over an asset S with execution date T, price S T at time T and strike price K.

Example 5 European call option (ECO) Consider an ECO over an asset S with execution date T, price S T at time T and strike price K. Example 5 European call option (ECO) Consider an ECO over an asset S with execution date T, price S T at time T and strike price K. Value of the ECO at time T: max{s T K,0} Price of ECO at time t < T:

More information

Data Distributions and Normality

Data Distributions and Normality Data Distributions and Normality Definition (Non)Parametric Parametric statistics assume that data come from a normal distribution, and make inferences about parameters of that distribution. These statistical

More information

GARCH Options in Incomplete Markets

GARCH Options in Incomplete Markets GARCH Options in Incomplete Markets Giovanni Barone-Adesi a, Robert Engle b and Loriano Mancini a a Institute of Finance, University of Lugano, Switzerland b Dept. of Finance, Leonard Stern School of Business,

More information

Mongolia s TOP-20 Index Risk Analysis, Pt. 3

Mongolia s TOP-20 Index Risk Analysis, Pt. 3 Mongolia s TOP-20 Index Risk Analysis, Pt. 3 Federico M. Massari March 12, 2017 In the third part of our risk report on TOP-20 Index, Mongolia s main stock market indicator, we focus on modelling the right

More information

VOLATILITY. Time Varying Volatility

VOLATILITY. Time Varying Volatility VOLATILITY Time Varying Volatility CONDITIONAL VOLATILITY IS THE STANDARD DEVIATION OF the unpredictable part of the series. We define the conditional variance as: 2 2 2 t E yt E yt Ft Ft E t Ft surprise

More information

Lecture 1: The Econometrics of Financial Returns

Lecture 1: The Econometrics of Financial Returns Lecture 1: The Econometrics of Financial Returns Prof. Massimo Guidolin 20192 Financial Econometrics Winter/Spring 2016 Overview General goals of the course and definition of risk(s) Predicting asset returns:

More information

Market risk measurement in practice

Market risk measurement in practice Lecture notes on risk management, public policy, and the financial system Allan M. Malz Columbia University 2018 Allan M. Malz Last updated: October 23, 2018 2/32 Outline Nonlinearity in market risk Market

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay. Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay. Solutions to Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (40 points) Answer briefly the following questions. 1. Describe

More information

Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD

Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD MAJOR POINTS Sampling distribution of the mean revisited Testing hypotheses: sigma known An example Testing hypotheses:

More information

STA 103: Final Exam. Print clearly on this exam. Only correct solutions that can be read will be given credit.

STA 103: Final Exam. Print clearly on this exam. Only correct solutions that can be read will be given credit. STA 103: Final Exam June 26, 2008 Name: } {{ } by writing my name i swear by the honor code Read all of the following information before starting the exam: Print clearly on this exam. Only correct solutions

More information

Subject CS1 Actuarial Statistics 1 Core Principles. Syllabus. for the 2019 exams. 1 June 2018

Subject CS1 Actuarial Statistics 1 Core Principles. Syllabus. for the 2019 exams. 1 June 2018 ` Subject CS1 Actuarial Statistics 1 Core Principles Syllabus for the 2019 exams 1 June 2018 Copyright in this Core Reading is the property of the Institute and Faculty of Actuaries who are the sole distributors.

More information

Fin285a:Computer Simulations and Risk Assessment Section Options and Partial Risk Hedges Reading: Hilpisch,

Fin285a:Computer Simulations and Risk Assessment Section Options and Partial Risk Hedges Reading: Hilpisch, Fin285a:Computer Simulations and Risk Assessment Section 9.1-9.2 Options and Partial Risk Hedges Reading: Hilpisch, 290-294 Option valuation: Analytic Black/Scholes function Option valuation: Monte-carlo

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay. Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay. Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay Midterm ChicagoBooth Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

STAT 3090 Test 2 - Version B Fall Student s Printed Name: PLEASE READ DIRECTIONS!!!!

STAT 3090 Test 2 - Version B Fall Student s Printed Name: PLEASE READ DIRECTIONS!!!! Student s Printed Name: Instructor: XID: Section #: Read each question very carefully. You are permitted to use a calculator on all portions of this exam. You are NOT allowed to use any textbook, notes,

More information

Measuring Financial Risk using Extreme Value Theory: evidence from Pakistan

Measuring Financial Risk using Extreme Value Theory: evidence from Pakistan Measuring Financial Risk using Extreme Value Theory: evidence from Pakistan Dr. Abdul Qayyum and Faisal Nawaz Abstract The purpose of the paper is to show some methods of extreme value theory through analysis

More information

MATH 10 INTRODUCTORY STATISTICS

MATH 10 INTRODUCTORY STATISTICS MATH 10 INTRODUCTORY STATISTICS Ramesh Yapalparvi Week 4 à Midterm Week 5 woohoo Chapter 9 Sampling Distributions ß today s lecture Sampling distributions of the mean and p. Difference between means. Central

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay. Solutions to Final Exam.

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay. Solutions to Final Exam. The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (32 pts) Answer briefly the following questions. 1. Suppose

More information

Obtaining Predictive Distributions for Reserves Which Incorporate Expert Opinions R. Verrall A. Estimation of Policy Liabilities

Obtaining Predictive Distributions for Reserves Which Incorporate Expert Opinions R. Verrall A. Estimation of Policy Liabilities Obtaining Predictive Distributions for Reserves Which Incorporate Expert Opinions R. Verrall A. Estimation of Policy Liabilities LEARNING OBJECTIVES 5. Describe the various sources of risk and uncertainty

More information

Web Appendix. Are the effects of monetary policy shocks big or small? Olivier Coibion

Web Appendix. Are the effects of monetary policy shocks big or small? Olivier Coibion Web Appendix Are the effects of monetary policy shocks big or small? Olivier Coibion Appendix 1: Description of the Model-Averaging Procedure This section describes the model-averaging procedure used in

More information

Financial Risk Forecasting Chapter 7 Simulation methods for VaR for options and bonds

Financial Risk Forecasting Chapter 7 Simulation methods for VaR for options and bonds Financial Risk Forecasting Chapter 7 Simulation methods for VaR for options and bonds Jon Danielsson 2017 London School of Economics To accompany Financial Risk Forecasting www.financialriskforecasting.com

More information