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

Size: px
Start display at page:

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

Transcription

1 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 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.) y = [2:2:8]; x = sum( 2*y ) 40 b.) y = [-2:2]; mean(y([1 3 5])) 0 c.) x = -1:2; sum( 2.^(x(x~=0))) (2^ ^2) 6.5 d.) rng(10); x = rand(1,5); rng(10); y = rand(1,5); y.^2 - x.*y Same set of random numbers (same seed) [ ] (exactly and a vector) Fin285a Page 1 of 8 Midterm Exam: Fall 2013

2 2. (15 points) For this problem, consider the following matlab code load../data/dow.dat % daily Dow price levels p = dow(:,2); pb = dow(1:10:end,2); reta = p(2:end)./p(1:end-1)-1; retb = pb(2:end)./pb(1:end-1)-1; nsamp = length(ret1); v3 = 100*(1+retb)-100; v1 = -quantile(v3,0.01); nboot = ; for i = 1:nboot! rc = sample(reta,10);! pc = 100*prod(1+rc);! vc(i) = pc-100; end v2 = -quantile(vc,0.01); display( measure 1 ) v1 display( measure 2 ) v2 a.) Which risk measure is this program estimating? Report the name of the measure, and the probability level (p), and the horizon if relevant. Var, p = 0.01, h = 10 day b.) Which assumptions is the measure v1 making about the data? Does it assume a distribution? Are the returns assumed to be independent? No assumption on distribution, no assumption on independence c.) Which assumptions is the measure v2 making about the data? Does it assume a distribution? Are the returns assumed to be independent? No assumption on distribution, but returns are assumed to be independent. Fin285a Page 2 of 8 Midterm Exam: Fall 2013

3 3. (15 points) For this problem, consider the following matlab code. % reta = set of returns for a specific stock nsamp = length(reta); rf = 0.03; sharpe = (mean(reta) - rf)/std(reta); nboot = ; sharpes = zeros(nboot,1); for i = 1:nboot! retb = sample(reta,nsamp);! sharpes(i) = (mean(retb)-rf)/std(retb); end b = quantile(sharpes,[0.05, 0.95]); p = proportion(abs(sharpes-sharpe) > abs(sharpe-0.8)) [b(1) sharpe b(2)] a.) Is this a bootstrap or a monte-carlo? Bootstrap b.) What is the last line reporting? In particular what are b(1) and b(2)? 90 percent confidence bounds, percentile method c.) If you were looking for an investment with a Sharpe ratio of at least 0.75, and b(1)=0.5, and b(2)=0.65, does this stock look likely to meet your criterion? No, since the value you want is outside the conf. bands, it is unlikely to be true. d.) What null hypothesis is the second to last line testing? E(Sharpe) = 0.8 e.) If p = 0.02, do you have enough information to estimate the probability of a Type I error? If so, what is it? Yes, if you decide to reject the null hypothesis at the current estimated Sharpe ratio, the your probability of the null being true would be Fin285a Page 3 of 8 Midterm Exam: Fall 2013

4 4. (12 points) For this problem, consider the following matlab code. ret1 = retus(:,2); n = length(ret1); % length of data vx = 0.005; port1day = 100*(1+ret1); porta = quantile(port1day,vx); portb = mean ( port1day(port1day <= porta)); v2 = portb; xx = 100; for i = 1:xx! ret3 = sample(ret1,n); portc = 100*(1+ret3);! p1 = quantile(portc,vx);! p2 = mean( portc(portc <= p1));! v(i) = p2; end s = std(v); c1 = norminv(0.025,0,1);c2=norminv(0.975,0,1); [s*c1 v2 s*c2] a.) Which risk measure is this program estimating? ES, p = 0.005, 1 day b.) Which type of estimation method is it using? (delta-normal, historical, monte-carlo) historical c.) What does the confidence band printed on the last line assume about the distribution of the estimated value, v2? Normal d.) What does the variable xx represent? Would it be useful to make it larger if you could? Number of bootstraps. Yes, would be good to be as large as possible. Fin285a Page 4 of 8 Midterm Exam: Fall 2013

5 Part II. Multiple choice (2 points each): Circle the one best answer from the choices. 5. The market risk capital formula in Basel II (and probably Basel III) requires firms to hold larger reserves when >a.) recent levels of VaR are larger. b.) the yield curve is steeper. c.) systemic risk is larger. d.) they are located farther from Basel, Switzerland. 6. A confidence interval represents a.) a range of values that you are confident about. >b.) a range of values which contains the true value with high probability. c.) a range of values which represents your own judgement about the true value. d.) a range of values which include a range of all risk management analysts at a firm. 7. One advantage of expected shortfall over VaR as a risk measure is that a.) it is easier to explain. >b.) it is more sensitive to small changes in the shape and location of the left tail of return distributions. c.) it is easier to calculate. d.) it can be used to estimate liquidity risk. 8. Risk measures that are not subadditive may encourage firms to a.) overweight the expected return. b.) avoid monte-carlo simulations. c.) underweight the impact of fat tails. >d.) split firm components into multiple parts. 9. A QQ plot is a useful tool for determining >a.) whether a set of data comes from a normal distribution. b.) when returns are independent over time. c.) when volatility has increased. d.) when a mean has significantly increased. 10. An investor s portfolio contains 1 share of stock only. Today s price is 100, and known. Tomorrow s price follows a given distribution for which you know the 0.05 quantile. To calculate the p = 0.05, 1 day VaR you >a.) have all the information you need. b.) need to also know the mean and variance for this distribution. c.) need to know the distribution of future prices, or historic return information. d.) need to use the bootstrap to estimate VaR. Fin285a Page 5 of 8 Midterm Exam: Fall 2013

6 11.One advantage of the historical VaR approach that Finger mentions in his article is a.) that it doesn t need much data. b.) can be done by hand with normal tables. c.) requires zero assumptions. >d.) that specific data points have names, and one can look at history for further information. 12.To do a monte-carlo analysis you a.) don t need to make any assumptions. >b.) need to assume a distribution, and values for its parameters. c.) need to first do a bootstrap to see if a monte-carlo is necessary. d.) need lots of data. 13.The student-t distribution appears to be a better approximation for daily stock returns because a.) it is more volatile than a normal distribution. b.) its mean is more unstable than a normal distribution. >c.) it has fatter tails than a normal distribution. d.) it is more skewed than a normal distribution. 14. During which decade was VaR invented? a.) 1930 s b.) 1960 s >c.) 1980 s d.) 2000 s 15. The internal models philosophy of capital requirements >a.) shifted much of the burden of assessing risk to financial institutions. b.) made the central bank the only one in charge of estimating risk. c.) set up a new class of models with an internal bootstrap rather than an external bootstrap. d.) says that investors should average all the internal models that they keep in their head. Fin285a Page 6 of 8 Midterm Exam: Fall 2013

7 Part III. Very short answer. Answer the following with numbers or a few words. 16.) (15 points) A portfolio profit and loss values follow the following discrete distribution. Value Probability a.) What is the VaR for p = 0.005, 0.05? VaR(0.005) = 100 VaR(0.05) = 50 b.) What is the expected shortfall for p = 0.005, 0.05? ES(0.005) = 100 ES(0.05) = (1/5)100 + (4/5)50 = 60 c.) Now assume the worst outcome is revised from -100 to The probabilities all remain the same, and all the other outcomes also remain the same. Recalculate the p=0.05 VaR and ES for this case. VaR(0.05) = 50 ES(0.05) = (1/5)200 + (4/5)50 = 80 Fin285a Page 7 of 8 Midterm Exam: Fall 2013

8 17.) (4 points) The probability of a return being smaller than is 0.2. The probability that it is less than is What is the conditional probability of the return being less than conditional on it being less than -0.05? (Do you have enough information to answer this?) Prob(R<-0.10 and R<-0.05)/Prob(R<-0.05) = 0.01/0.2 = ) (5 points) You know that returns in the extreme left tail of a distribution follow a power-law like relationship where, Pr(R < x) = A x α,α = 2 You know that the probability of getting a return less than 5 percent is What is the probability of getting a return less than 10 percent (do you have enough information to tell)? Prob(R<2x) = A 2x ^(-2) = (1/4)A x ^(-2) = (1/4)Prob(R<x) Prob(R<-0.10) = (1/4) Prob(R<-0.05) = Fin285a Page 8 of 8 Midterm Exam: Fall 2013

NAME: (write your name here!!)

NAME: (write your name here!!) 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

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

Midterm Exam: Overnight Take Home Three Questions Allocated as 35, 30, 35 Points, 100 Points Total

Midterm Exam: Overnight Take Home Three Questions Allocated as 35, 30, 35 Points, 100 Points Total Economics 690 Spring 2016 Tauchen Midterm Exam: Overnight Take Home Three Questions Allocated as 35, 30, 35 Points, 100 Points Total Due Midnight, Wednesday, October 5, 2016 Exam Rules This exam is totally

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

Fin285a:Computer Simulations and Risk Assessment Section 9 Backtesting and Stress Testing Daníelson, , 8.5, 8.6

Fin285a:Computer Simulations and Risk Assessment Section 9 Backtesting and Stress Testing Daníelson, , 8.5, 8.6 Fin285a:Computer Simulations and Risk Assessment Section 9 Backtesting and Stress Testing Daníelson, 8.1-8.3.1, 8.5, 8.6 Overview What is backtesting? Regulatory issues Backtesting details Backtest examples

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

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

Comparison of Estimation For Conditional Value at Risk

Comparison of Estimation For Conditional Value at Risk -1- University of Piraeus Department of Banking and Financial Management Postgraduate Program in Banking and Financial Management Comparison of Estimation For Conditional Value at Risk Georgantza Georgia

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

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

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

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

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

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

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

Market Risk: FROM VALUE AT RISK TO STRESS TESTING. Agenda. Agenda (Cont.) Traditional Measures of Market Risk

Market Risk: FROM VALUE AT RISK TO STRESS TESTING. Agenda. Agenda (Cont.) Traditional Measures of Market Risk Market Risk: FROM VALUE AT RISK TO STRESS TESTING Agenda The Notional Amount Approach Price Sensitivity Measure for Derivatives Weakness of the Greek Measure Define Value at Risk 1 Day to VaR to 10 Day

More information

Section B: Risk Measures. Value-at-Risk, Jorion

Section B: Risk Measures. Value-at-Risk, Jorion Section B: Risk Measures Value-at-Risk, Jorion One thing to always keep in mind when reading this text is that it is focused on the banking industry. It mainly focuses on market and credit risk. It also

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

Monte Carlo Simulation (General Simulation Models)

Monte Carlo Simulation (General Simulation Models) Monte Carlo Simulation (General Simulation Models) Revised: 10/11/2017 Summary... 1 Example #1... 1 Example #2... 10 Summary Monte Carlo simulation is used to estimate the distribution of variables when

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

Lecture Slides. Elementary Statistics Tenth Edition. by Mario F. Triola. and the Triola Statistics Series. Slide 1

Lecture Slides. Elementary Statistics Tenth Edition. by Mario F. Triola. and the Triola Statistics Series. Slide 1 Lecture Slides Elementary Statistics Tenth Edition and the Triola Statistics Series by Mario F. Triola Slide 1 Chapter 6 Normal Probability Distributions 6-1 Overview 6-2 The Standard Normal Distribution

More information

Tests for One Variance

Tests for One Variance Chapter 65 Introduction Occasionally, researchers are interested in the estimation of the variance (or standard deviation) rather than the mean. This module calculates the sample size and performs power

More information

Value at Risk Risk Management in Practice. Nikolett Gyori (Morgan Stanley, Internal Audit) September 26, 2017

Value at Risk Risk Management in Practice. Nikolett Gyori (Morgan Stanley, Internal Audit) September 26, 2017 Value at Risk Risk Management in Practice Nikolett Gyori (Morgan Stanley, Internal Audit) September 26, 2017 Overview Value at Risk: the Wake of the Beast Stop-loss Limits Value at Risk: What is VaR? Value

More information

Exam 2 Spring 2015 Statistics for Applications 4/9/2015

Exam 2 Spring 2015 Statistics for Applications 4/9/2015 18.443 Exam 2 Spring 2015 Statistics for Applications 4/9/2015 1. True or False (and state why). (a). The significance level of a statistical test is not equal to the probability that the null hypothesis

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

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

John Cotter and Kevin Dowd

John Cotter and Kevin Dowd Extreme spectral risk measures: an application to futures clearinghouse margin requirements John Cotter and Kevin Dowd Presented at ECB-FRB conference April 2006 Outline Margin setting Risk measures Risk

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

P2.T5. Market Risk Measurement & Management. Kevin Dowd, Measuring Market Risk, 2nd Edition

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

More information

Potential Financial Exposure (PFE)

Potential Financial Exposure (PFE) Dan Diebold September 19, 2017 Potential Financial Exposure (PFE) dan.diebold@avangrid.com www.avangridrenewables.com 1 Current vs. Future Exposure Credit risk managers traditionally focus on current exposure

More information

Introduction Dickey-Fuller Test Option Pricing Bootstrapping. Simulation Methods. Chapter 13 of Chris Brook s Book.

Introduction Dickey-Fuller Test Option Pricing Bootstrapping. Simulation Methods. Chapter 13 of Chris Brook s Book. Simulation Methods Chapter 13 of Chris Brook s Book Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg : 6828 0364 : LKCSB 5036 April 26, 2017 Christopher

More information

Field Guide to Internal Models under the Basel Committee s Fundamental review of the trading book framework

Field Guide to Internal Models under the Basel Committee s Fundamental review of the trading book framework Field Guide to Internal Models under the Basel Committee s Fundamental review of the trading book framework Barry Pearce, Director, Skew Vega Limited A R T I C L E I N F O A B S T R A C T Article history:

More information

CHAPTER II LITERATURE STUDY

CHAPTER II LITERATURE STUDY CHAPTER II LITERATURE STUDY 2.1. Risk Management Monetary crisis that strike Indonesia during 1998 and 1999 has caused bad impact to numerous government s and commercial s bank. Most of those banks eventually

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

Acritical aspect of any capital budgeting decision. Using Excel to Perform Monte Carlo Simulations TECHNOLOGY

Acritical aspect of any capital budgeting decision. Using Excel to Perform Monte Carlo Simulations TECHNOLOGY Using Excel to Perform Monte Carlo Simulations By Thomas E. McKee, CMA, CPA, and Linda J.B. McKee, CPA Acritical aspect of any capital budgeting decision is evaluating the risk surrounding key variables

More information

Monte Carlo Simulation (Random Number Generation)

Monte Carlo Simulation (Random Number Generation) Monte Carlo Simulation (Random Number Generation) Revised: 10/11/2017 Summary... 1 Data Input... 1 Analysis Options... 6 Summary Statistics... 6 Box-and-Whisker Plots... 7 Percentiles... 9 Quantile Plots...

More information

CAPITAL MANAGEMENT - FOURTH QUARTER 2009

CAPITAL MANAGEMENT - FOURTH QUARTER 2009 CAPITAL MANAGEMENT - FOURTH QUARTER 2009 CAPITAL MANAGEMENT The purpose of the Bank s capital management practice is to ensure that the Bank has sufficient capital at all times to cover the risks associated

More information

Model Construction & Forecast Based Portfolio Allocation:

Model Construction & Forecast Based Portfolio Allocation: QBUS6830 Financial Time Series and Forecasting Model Construction & Forecast Based Portfolio Allocation: Is Quantitative Method Worth It? Members: Bowei Li (303083) Wenjian Xu (308077237) Xiaoyun Lu (3295347)

More information

Both the quizzes and exams are closed book. However, For quizzes: Formulas will be provided with quiz papers if there is any need.

Both the quizzes and exams are closed book. However, For quizzes: Formulas will be provided with quiz papers if there is any need. Both the quizzes and exams are closed book. However, For quizzes: Formulas will be provided with quiz papers if there is any need. For exams (MD1, MD2, and Final): You may bring one 8.5 by 11 sheet of

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

Measurement of Market Risk

Measurement of Market Risk Measurement of Market Risk Market Risk Directional risk Relative value risk Price risk Liquidity risk Type of measurements scenario analysis statistical analysis Scenario Analysis A scenario analysis measures

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

QQ PLOT Yunsi Wang, Tyler Steele, Eva Zhang Spring 2016

QQ PLOT Yunsi Wang, Tyler Steele, Eva Zhang Spring 2016 QQ PLOT INTERPRETATION: Quantiles: QQ PLOT Yunsi Wang, Tyler Steele, Eva Zhang Spring 2016 The quantiles are values dividing a probability distribution into equal intervals, with every interval having

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

Alternative VaR Models

Alternative VaR Models Alternative VaR Models Neil Roeth, Senior Risk Developer, TFG Financial Systems. 15 th July 2015 Abstract We describe a variety of VaR models in terms of their key attributes and differences, e.g., parametric

More information

Week 7 Quantitative Analysis of Financial Markets Simulation Methods

Week 7 Quantitative Analysis of Financial Markets Simulation Methods Week 7 Quantitative Analysis of Financial Markets Simulation Methods Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg : 6828 0364 : LKCSB 5036 November

More information

Chapter 8 Statistical Intervals for a Single Sample

Chapter 8 Statistical Intervals for a Single Sample Chapter 8 Statistical Intervals for a Single Sample Part 1: Confidence intervals (CI) for population mean µ Section 8-1: CI for µ when σ 2 known & drawing from normal distribution Section 8-1.2: Sample

More information

The Assumption(s) of Normality

The Assumption(s) of Normality The Assumption(s) of Normality Copyright 2000, 2011, 2016, J. Toby Mordkoff This is very complicated, so I ll provide two versions. At a minimum, you should know the short one. It would be great if you

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

The Fundamental Review of the Trading Book: from VaR to ES

The Fundamental Review of the Trading Book: from VaR to ES The Fundamental Review of the Trading Book: from VaR to ES Chiara Benazzoli Simon Rabanser Francesco Cordoni Marcus Cordi Gennaro Cibelli University of Verona Ph. D. Modelling Week Finance Group (UniVr)

More information

EWS-GARCH: NEW REGIME SWITCHING APPROACH TO FORECAST VALUE-AT-RISK

EWS-GARCH: NEW REGIME SWITCHING APPROACH TO FORECAST VALUE-AT-RISK Working Papers No. 6/2016 (197) MARCIN CHLEBUS EWS-GARCH: NEW REGIME SWITCHING APPROACH TO FORECAST VALUE-AT-RISK Warsaw 2016 EWS-GARCH: New Regime Switching Approach to Forecast Value-at-Risk MARCIN CHLEBUS

More information

Chapter 7. Inferences about Population Variances

Chapter 7. Inferences about Population Variances Chapter 7. Inferences about Population Variances Introduction () The variability of a population s values is as important as the population mean. Hypothetical distribution of E. coli concentrations from

More information

Report 2 Instructions - SF2980 Risk Management

Report 2 Instructions - SF2980 Risk Management Report 2 Instructions - SF2980 Risk Management Henrik Hult and Carl Ringqvist Nov, 2016 Instructions Objectives The projects are intended as open ended exercises suitable for deeper investigation of some

More information

Asset Allocation Model with Tail Risk Parity

Asset Allocation Model with Tail Risk Parity Proceedings of the Asia Pacific Industrial Engineering & Management Systems Conference 2017 Asset Allocation Model with Tail Risk Parity Hirotaka Kato Graduate School of Science and Technology Keio University,

More information

Bloomberg. Portfolio Value-at-Risk. Sridhar Gollamudi & Bryan Weber. September 22, Version 1.0

Bloomberg. Portfolio Value-at-Risk. Sridhar Gollamudi & Bryan Weber. September 22, Version 1.0 Portfolio Value-at-Risk Sridhar Gollamudi & Bryan Weber September 22, 2011 Version 1.0 Table of Contents 1 Portfolio Value-at-Risk 2 2 Fundamental Factor Models 3 3 Valuation methodology 5 3.1 Linear factor

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

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

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

Financial Risk Management and Governance Other VaR methods. Prof. Hugues Pirotte

Financial Risk Management and Governance Other VaR methods. Prof. Hugues Pirotte Financial Risk Management and Governance Other VaR methods Prof. ugues Pirotte Idea of historical simulations Why rely on statistics and hypothetical distribution?» Use the effective past distribution

More information

Financial Times Series. Lecture 6

Financial Times Series. Lecture 6 Financial Times Series Lecture 6 Extensions of the GARCH There are numerous extensions of the GARCH Among the more well known are EGARCH (Nelson 1991) and GJR (Glosten et al 1993) Both models allow for

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

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

Downside Risk: Implications for Financial Management Robert Engle NYU Stern School of Business Carlos III, May 24,2004

Downside Risk: Implications for Financial Management Robert Engle NYU Stern School of Business Carlos III, May 24,2004 Downside Risk: Implications for Financial Management Robert Engle NYU Stern School of Business Carlos III, May 24,2004 WHAT IS ARCH? Autoregressive Conditional Heteroskedasticity Predictive (conditional)

More information

From Financial Engineering to Risk Management. Radu Tunaru University of Kent, UK

From Financial Engineering to Risk Management. Radu Tunaru University of Kent, UK Model Risk in Financial Markets From Financial Engineering to Risk Management Radu Tunaru University of Kent, UK \Yp World Scientific NEW JERSEY LONDON SINGAPORE BEIJING SHANGHAI HONG KONG TAIPEI CHENNAI

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

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

Problem max points points scored Total 120. Do all 6 problems.

Problem max points points scored Total 120. Do all 6 problems. Solutions to (modified) practice exam 4 Statistics 224 Practice exam 4 FINAL Your Name Friday 12/21/07 Professor Michael Iltis (Lecture 2) Discussion section (circle yours) : section: 321 (3:30 pm M) 322

More information

Tests for Two Variances

Tests for Two Variances Chapter 655 Tests for Two Variances Introduction Occasionally, researchers are interested in comparing the variances (or standard deviations) of two groups rather than their means. This module calculates

More information

appstats5.notebook September 07, 2016 Chapter 5

appstats5.notebook September 07, 2016 Chapter 5 Chapter 5 Describing Distributions Numerically Chapter 5 Objective: Students will be able to use statistics appropriate to the shape of the data distribution to compare of two or more different data sets.

More information

STAT 201 Chapter 6. Distribution

STAT 201 Chapter 6. Distribution STAT 201 Chapter 6 Distribution 1 Random Variable We know variable Random Variable: a numerical measurement of the outcome of a random phenomena Capital letter refer to the random variable Lower case letters

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

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

Value at Risk, Expected Shortfall, and Marginal Risk Contribution, in: Szego, G. (ed.): Risk Measures for the 21st Century, p , Wiley 2004.

Value at Risk, Expected Shortfall, and Marginal Risk Contribution, in: Szego, G. (ed.): Risk Measures for the 21st Century, p , Wiley 2004. Rau-Bredow, Hans: Value at Risk, Expected Shortfall, and Marginal Risk Contribution, in: Szego, G. (ed.): Risk Measures for the 21st Century, p. 61-68, Wiley 2004. Copyright geschützt 5 Value-at-Risk,

More information

Overview. We will discuss the nature of market risk and appropriate measures

Overview. We will discuss the nature of market risk and appropriate measures Market Risk Overview We will discuss the nature of market risk and appropriate measures RiskMetrics Historic (back stimulation) approach Monte Carlo simulation approach Link between market risk and required

More information

CAPITAL MANAGEMENT - THIRD QUARTER 2010

CAPITAL MANAGEMENT - THIRD QUARTER 2010 CAPITAL MANAGEMENT - THIRD QUARTER 2010 CAPITAL MANAGEMENT The purpose of the Bank s capital management practice is to ensure that the Bank has sufficient capital at all times to cover the risks associated

More information

Math 140 Introductory Statistics

Math 140 Introductory Statistics Math 140 Introductory Statistics Professor Silvia Fernández Lecture 2 Based on the book Statistics in Action by A. Watkins, R. Scheaffer, and G. Cobb. Summary Statistic Consider as an example of our analysis

More information

Evidence from Large Indemnity and Medical Triangles

Evidence from Large Indemnity and Medical Triangles 2009 Casualty Loss Reserve Seminar Session: Workers Compensation - How Long is the Tail? Evidence from Large Indemnity and Medical Triangles Casualty Loss Reserve Seminar September 14-15, 15, 2009 Chicago,

More information

Modelling Returns: the CER and the CAPM

Modelling Returns: the CER and the CAPM Modelling Returns: the CER and the CAPM Carlo Favero Favero () Modelling Returns: the CER and the CAPM 1 / 20 Econometric Modelling of Financial Returns Financial data are mostly observational data: they

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

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

FV N = PV (1+ r) N. FV N = PVe rs * N 2011 ELAN GUIDES 3. The Future Value of a Single Cash Flow. The Present Value of a Single Cash Flow

FV N = PV (1+ r) N. FV N = PVe rs * N 2011 ELAN GUIDES 3. The Future Value of a Single Cash Flow. The Present Value of a Single Cash Flow QUANTITATIVE METHODS The Future Value of a Single Cash Flow FV N = PV (1+ r) N The Present Value of a Single Cash Flow PV = FV (1+ r) N PV Annuity Due = PVOrdinary Annuity (1 + r) FV Annuity Due = FVOrdinary

More information

Mendelian Randomization with a Binary Outcome

Mendelian Randomization with a Binary Outcome Chapter 851 Mendelian Randomization with a Binary Outcome Introduction This module computes the sample size and power of the causal effect in Mendelian randomization studies with a binary outcome. This

More information

Sampling Distributions and the Central Limit Theorem

Sampling Distributions and the Central Limit Theorem Sampling Distributions and the Central Limit Theorem February 18 Data distributions and sampling distributions So far, we have discussed the distribution of data (i.e. of random variables in our sample,

More information

Data Analysis and Statistical Methods Statistics 651

Data Analysis and Statistical Methods Statistics 651 Data Analysis and Statistical Methods Statistics 651 http://www.stat.tamu.edu/~suhasini/teaching.html Lecture 10 (MWF) Checking for normality of the data using the QQplot Suhasini Subba Rao Checking for

More information

Question 1a 1b 1c 1d 1e 1f 2a 2b 2c 2d 3a 3b 3c 3d M ult:choice Points

Question 1a 1b 1c 1d 1e 1f 2a 2b 2c 2d 3a 3b 3c 3d M ult:choice Points Economics 102: Analysis of Economic Data Cameron Spring 2015 April 23 Department of Economics, U.C.-Davis First Midterm Exam (Version A) Compulsory. Closed book. Total of 30 points and worth 22.5% of course

More information

GARCH vs. Traditional Methods of Estimating Value-at-Risk (VaR) of the Philippine Bond Market

GARCH vs. Traditional Methods of Estimating Value-at-Risk (VaR) of the Philippine Bond Market GARCH vs. Traditional Methods of Estimating Value-at-Risk (VaR) of the Philippine Bond Market INTRODUCTION Value-at-Risk (VaR) Value-at-Risk (VaR) summarizes the worst loss over a target horizon that

More information

How to Consider Risk Demystifying Monte Carlo Risk Analysis

How to Consider Risk Demystifying Monte Carlo Risk Analysis How to Consider Risk Demystifying Monte Carlo Risk Analysis James W. Richardson Regents Professor Senior Faculty Fellow Co-Director, Agricultural and Food Policy Center Department of Agricultural Economics

More information

The Standard Deviation as a Ruler and the Normal Model. Copyright 2009 Pearson Education, Inc.

The Standard Deviation as a Ruler and the Normal Model. Copyright 2009 Pearson Education, Inc. The Standard Deviation as a Ruler and the Normal Mol Copyright 2009 Pearson Education, Inc. The trick in comparing very different-looking values is to use standard viations as our rulers. The standard

More information

GN47: Stochastic Modelling of Economic Risks in Life Insurance

GN47: Stochastic Modelling of Economic Risks in Life Insurance GN47: Stochastic Modelling of Economic Risks in Life Insurance Classification Recommended Practice MEMBERS ARE REMINDED THAT THEY MUST ALWAYS COMPLY WITH THE PROFESSIONAL CONDUCT STANDARDS (PCS) AND THAT

More information

FRTB. NMRF Aggregation Proposal

FRTB. NMRF Aggregation Proposal FRTB NMRF Aggregation Proposal June 2018 1 Agenda 1. Proposal on NMRF aggregation 1.1. On the ability to prove correlation assumptions 1.2. On the ability to assess correlation ranges 1.3. How a calculation

More information

Risk management. VaR and Expected Shortfall. Christian Groll. VaR and Expected Shortfall Risk management Christian Groll 1 / 56

Risk management. VaR and Expected Shortfall. Christian Groll. VaR and Expected Shortfall Risk management Christian Groll 1 / 56 Risk management VaR and Expected Shortfall Christian Groll VaR and Expected Shortfall Risk management Christian Groll 1 / 56 Introduction Introduction VaR and Expected Shortfall Risk management Christian

More information

SYSM 6304 Risk and Decision Analysis Lecture 2: Fitting Distributions to Data

SYSM 6304 Risk and Decision Analysis Lecture 2: Fitting Distributions to Data SYSM 6304 Risk and Decision Analysis Lecture 2: Fitting Distributions to Data M. Vidyasagar Cecil & Ida Green Chair The University of Texas at Dallas Email: M.Vidyasagar@utdallas.edu September 5, 2015

More information

Stat 101 Exam 1 - Embers Important Formulas and Concepts 1

Stat 101 Exam 1 - Embers Important Formulas and Concepts 1 1 Chapter 1 1.1 Definitions Stat 101 Exam 1 - Embers Important Formulas and Concepts 1 1. Data Any collection of numbers, characters, images, or other items that provide information about something. 2.

More information

Financial Markets & Portfolio Choice

Financial Markets & Portfolio Choice Financial Markets & Portfolio Choice 2011/2012 Session 4 Benjamin HAMIDI Christophe BOUCHER benjamin.hamidi@univ-paris1.fr Part 4. Risk measures and other criteria 4.1 Returns Behavior and the Bell-Curve

More information

Descriptive Statistics (Devore Chapter One)

Descriptive Statistics (Devore Chapter One) Descriptive Statistics (Devore Chapter One) 1016-345-01 Probability and Statistics for Engineers Winter 2010-2011 Contents 0 Perspective 1 1 Pictorial and Tabular Descriptions of Data 2 1.1 Stem-and-Leaf

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

Chapter 6. y y. Standardizing with z-scores. Standardizing with z-scores (cont.)

Chapter 6. y y. Standardizing with z-scores. Standardizing with z-scores (cont.) Starter Ch. 6: A z-score Analysis Starter Ch. 6 Your Statistics teacher has announced that the lower of your two tests will be dropped. You got a 90 on test 1 and an 85 on test 2. You re all set to drop

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

ECON Introductory Econometrics. Lecture 1: Introduction and Review of Statistics

ECON Introductory Econometrics. Lecture 1: Introduction and Review of Statistics ECON4150 - Introductory Econometrics Lecture 1: Introduction and Review of Statistics Monique de Haan (moniqued@econ.uio.no) Stock and Watson Chapter 1-2 Lecture outline 2 What is econometrics? Course

More information

Frequency Distributions

Frequency Distributions Frequency Distributions January 8, 2018 Contents Frequency histograms Relative Frequency Histograms Cumulative Frequency Graph Frequency Histograms in R Using the Cumulative Frequency Graph to Estimate

More information