Chen-wei Chiu ECON 424 Eric Zivot July 17, Lab 4. Part I Descriptive Statistics. I. Univariate Graphical Analysis 1. Separate & Same Graph

Size: px
Start display at page:

Download "Chen-wei Chiu ECON 424 Eric Zivot July 17, Lab 4. Part I Descriptive Statistics. I. Univariate Graphical Analysis 1. Separate & Same Graph"

Transcription

1 Chen-wei Chiu ECON 424 Eric Zivot July 17, 2014 Part I Descriptive Statistics I. Univariate Graphical Analysis 1. Separate & Same Graph Lab 4

2 Time Series Plot Bar Graph The plots show that the returns on the three companies rise and fall in a similar behavior; all rise around the same period, and all fall in the same period. However, both FMAGX and SBUX have higher volatility than VBLTX. All three have a huge fall in the returns toward the end of 2008 at the beginning of the financial crisis.

3 2. Plot of Cumulative Returns While VBLTX experienced a steady increase on the cumulative returns over the years, SBUX had a rapid growth from 2002 to 2007 and experienced a shock during the financial crisis in 2007 and However, SBUX had another rapid growth toward the end of On the other hand, returns on FMAGX had not grown much throughout the years, and it had a sharp fall in the August of Given the plot, SBUX has the best future values over the investment horizon while FMAGX has the worst. 3. VBLTX

4 FMAGX SBUX

5 Comparison of All Three The return series for SBUX and FMAGX do not look normally distributed. SBUX and FMAGX have negative skewedness. However, SBUX has a wider range of distribution on returns while VBLTX has the more narrow range of return distribution.

6 II. Univariate Numerical Summary Statistics 1. Calculated with R: > table.stats(lab4returns.z) VBLTX FMAGX SBUX Observations NAs Minimum Quartile Median Arithmetic Mean Geometric Mean Quartile Maximum SE Mean LCL Mean (0.95) UCL Mean (0.95) Variance Stdev Skewness Kurtosis From the descriptive statistics, SBUX has the highest arithmetic mean and VBLTX has the highest geometric mean. SBUX and FMAGX are more negatively skewed. The excess kurtosis means that all three distributions have fatter tails. Although SBUX seem to have a relatively higher return, it also bears the highest risk of all three because it has the highest variance and standard deviation. 2. Calculated with R: > # annualized cc mean > 12*apply(ret.mat, 2, mean) VBLTX FMAGX SBUX > # annualized simple mean > exp(12*apply(ret.mat, 2, mean)) - 1 VBLTX FMAGX SBUX The estimated annual simple returns are consistent with the annual continuously compounded returns, all three with a higher value.

7 3. Calculated with R: > # annualized sd values > sqrt(12)*apply(ret.mat, 2, sd) VBLTX FMAGX SBUX The estimated annualized standard deviations are all roughly 4 times higher than the standard deviations calculated in the descriptive statistics in Part 1. III. Bivariate Graphical Analysis From the plot, we can see that there s no correlation between VBLTX and FMAGX. There appears to have no correlation between VBLTX and SBUX as well. There is a weak, positive correlation between FMAGX and SBUX. IV. Bivariate Numerical Summary Statistics > var(ret.mat) VBLTX FMAGX SBUX VBLTX 6.748e e FMAGX 8.035e e SBUX e e > cor(ret.mat) VBLTX FMAGX SBUX VBLTX FMAGX SBUX

8 Using the var() and cor() function in R, we can find a very weak positive correlation VBLTX and FMAGX and a very weak negative correlation between VBLTX and SBUX. There is a positive correlation between FMAGX and SBUX, which is about V. Time Series Summary Statistics From the plots of autocorrelation functions graphed in R, the returns appear to be uncorrelated over time. Part II Constant Expected Return Model 1. Calculated with R: > cbind(muhat.vals,sigma2hat.vals,sigmahat.vals) muhat.vals sigma2hat.vals sigmahat.vals VBLTX FMAGX SBUX > cbind(covhat.vals,rhohat.vals) covhat.vals rhohat.vals VBLTX,FMAGX 8.035e VBLTX,SBUX e FMAGX,SBUX 3.035e Part I. The estimates (i.e. sample covariance and correlation) match our computation in

9 2. Calculated with R: > cbind(muhat.vals,se.muhat) muhat.vals se.muhat VBLTX FMAGX SBUX > cbind(sigma2hat.vals,se.sigma2hat) sigma2hat.vals se.sigma2hat VBLTX FMAGX SBUX > cbind(sigmahat.vals,se.sigmahat) sigmahat.vals se.sigmahat VBLTX FMAGX SBUX > cbind(rhohat.vals,se.rhohat) rhohat.vals se.rhohat VBLTX,FMAGX VBLTX,SBUX FMAGX,SBUX The precision of the variance and standard deviation are pretty high, as the standard errors are small for them. However, the precision of mean and correlation are low because the standard errors for them are substantially higher. 3. Calculated with R: 95% Confidence Interval > cbind(mu.lower,mu.upper) mu.lower mu.upper VBLTX FMAGX SBUX > cbind(sigma2.lower,sigma2.upper) sigma2.lower sigma2.upper VBLTX FMAGX SBUX > cbind(sigma.lower,sigma.upper) sigma.lower sigma.upper

10 VBLTX FMAGX SBUX > cbind(rho.lower,rho.upper) rho.lower rho.upper VBLTX,FMAGX VBLTX,SBUX FMAGX,SBUX % Confidence Interval > cbind(mu.lower,mu.upper) mu.lower mu.upper VBLTX FMAGX SBUX > cbind(sigma2.lower,sigma2.upper) sigma2.lower sigma2.upper VBLTX FMAGX SBUX > cbind(sigma.lower,sigma.upper) sigma.lower sigma.upper VBLTX FMAGX SBUX > cbind(rho.lower,rho.upper) rho.lower rho.upper VBLTX,FMAGX VBLTX,SBUX FMAGX,SBUX The CI for σ 2 and σ are fairly narrow, and that for opposite for μ and ρ are wider. 4. Calculated with R: > Value.at.Risk(ret.mat,p=0.05,w=100000) VBLTX FMAGX SBUX > Value.at.Risk(ret.mat,p=0.01,w=100000) VBLTX FMAGX SBUX VBLTX has the lowest value-at-risk.

11 Part III Ruppert Exercise 1. Plot with R: The time series look stationary. The fluctuations in the series seem to be of constant size, but it seems to be more volatile toward the end of 1997 and Plot with R: The series look stationary. The fluctuations in the series seem to be of constant size, roughly in between and Plots with R:

12 The marginal distribution of each series appear to be symmetric. However, the tails of these distributions do not appear to be normal and seem to be heavier than normal.

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

Introduction to Computational Finance and Financial Econometrics Descriptive Statistics

Introduction to Computational Finance and Financial Econometrics Descriptive Statistics You can t see this text! Introduction to Computational Finance and Financial Econometrics Descriptive Statistics Eric Zivot Summer 2015 Eric Zivot (Copyright 2015) Descriptive Statistics 1 / 28 Outline

More information

Economics 483. Midterm Exam. 1. Consider the following monthly data for Microsoft stock over the period December 1995 through December 1996:

Economics 483. Midterm Exam. 1. Consider the following monthly data for Microsoft stock over the period December 1995 through December 1996: University of Washington Summer Department of Economics Eric Zivot Economics 3 Midterm Exam This is a closed book and closed note exam. However, you are allowed one page of handwritten notes. Answer all

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

Descriptive Statistics

Descriptive Statistics Petra Petrovics Descriptive Statistics 2 nd seminar DESCRIPTIVE STATISTICS Definition: Descriptive statistics is concerned only with collecting and describing data Methods: - statistical tables and graphs

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

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

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

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

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

Chapter 3. Numerical Descriptive Measures. Copyright 2016 Pearson Education, Ltd. Chapter 3, Slide 1

Chapter 3. Numerical Descriptive Measures. Copyright 2016 Pearson Education, Ltd. Chapter 3, Slide 1 Chapter 3 Numerical Descriptive Measures Copyright 2016 Pearson Education, Ltd. Chapter 3, Slide 1 Objectives In this chapter, you learn to: Describe the properties of central tendency, variation, and

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

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

Risk and Return: Past and Prologue

Risk and Return: Past and Prologue Chapter 5 Risk and Return: Past and Prologue Bodie, Kane, and Marcus Essentials of Investments Tenth Edition 5.1 Rates of Return Holding-Period Return (HPR) Rate of return over given investment period

More information

Chapter 6 Simple Correlation and

Chapter 6 Simple Correlation and Contents Chapter 1 Introduction to Statistics Meaning of Statistics... 1 Definition of Statistics... 2 Importance and Scope of Statistics... 2 Application of Statistics... 3 Characteristics of Statistics...

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

2.4 STATISTICAL FOUNDATIONS

2.4 STATISTICAL FOUNDATIONS 2.4 STATISTICAL FOUNDATIONS Characteristics of Return Distributions Moments of Return Distribution Correlation Standard Deviation & Variance Test for Normality of Distributions Time Series Return Volatility

More information

Economics 424/Applied Mathematics 540. Final Exam Solutions

Economics 424/Applied Mathematics 540. Final Exam Solutions University of Washington Summer 01 Department of Economics Eric Zivot Economics 44/Applied Mathematics 540 Final Exam Solutions I. Matrix Algebra and Portfolio Math (30 points, 5 points each) Let R i denote

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

The Constant Expected Return Model

The Constant Expected Return Model Chapter 1 The Constant Expected Return Model Date: February 5, 2015 The first model of asset returns we consider is the very simple constant expected return (CER) model. This model is motivated by the

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

PSYCHOLOGICAL STATISTICS

PSYCHOLOGICAL STATISTICS UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION B Sc COUNSELLING PSYCHOLOGY (2011 Admission Onwards) II Semester Complementary Course PSYCHOLOGICAL STATISTICS QUESTION BANK 1. The process of grouping

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

Final Exam Suggested Solutions

Final Exam Suggested Solutions University of Washington Fall 003 Department of Economics Eric Zivot Economics 483 Final Exam Suggested Solutions This is a closed book and closed note exam. However, you are allowed one page of handwritten

More information

Description of Data I

Description of Data I Description of Data I (Summary and Variability measures) Objectives: Able to understand how to summarize the data Able to understand how to measure the variability of the data Able to use and interpret

More information

Introduction to Computational Finance and Financial Econometrics Introduction to Portfolio Theory

Introduction to Computational Finance and Financial Econometrics Introduction to Portfolio Theory You can t see this text! Introduction to Computational Finance and Financial Econometrics Introduction to Portfolio Theory Eric Zivot Spring 2015 Eric Zivot (Copyright 2015) Introduction to Portfolio Theory

More information

Risk and Return: Past and Prologue

Risk and Return: Past and Prologue Chapter 5 Risk and Return: Past and Prologue Bodie, Kane, and Marcus Essentials of Investments Tenth Edition What is in Chapter 5 5.1 Rates of Return HPR, arithmetic, geometric, dollar-weighted, APR, EAR

More information

Financial Econometrics: Problem Set # 3 Solutions

Financial Econometrics: Problem Set # 3 Solutions Financial Econometrics: Problem Set # 3 Solutions N Vera Chau The University of Chicago: Booth February 9, 219 1 a. You can generate the returns using the exact same strategy as given in problem 2 below.

More information

Moments and Measures of Skewness and Kurtosis

Moments and Measures of Skewness and Kurtosis Moments and Measures of Skewness and Kurtosis Moments The term moment has been taken from physics. The term moment in statistical use is analogous to moments of forces in physics. In statistics the values

More information

Financial Econometrics

Financial Econometrics Financial Econometrics Value at Risk Gerald P. Dwyer Trinity College, Dublin January 2016 Outline 1 Value at Risk Introduction VaR RiskMetrics TM Summary Risk What do we mean by risk? Dictionary: possibility

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

The Constant Expected Return Model

The Constant Expected Return Model Chapter 1 The Constant Expected Return Model Date: September 6, 2013 The first model of asset returns we consider is the very simple constant expected return (CER) model. This model assumes that an asset

More information

Fundamentals of Statistics

Fundamentals of Statistics CHAPTER 4 Fundamentals of Statistics Expected Outcomes Know the difference between a variable and an attribute. Perform mathematical calculations to the correct number of significant figures. Construct

More information

Amath 546/Econ 589 Univariate GARCH Models: Advanced Topics

Amath 546/Econ 589 Univariate GARCH Models: Advanced Topics Amath 546/Econ 589 Univariate GARCH Models: Advanced Topics Eric Zivot April 29, 2013 Lecture Outline The Leverage Effect Asymmetric GARCH Models Forecasts from Asymmetric GARCH Models GARCH Models with

More information

University of Colorado at Boulder Leeds School of Business Dr. Roberto Caccia

University of Colorado at Boulder Leeds School of Business Dr. Roberto Caccia Applied Derivatives Risk Management Value at Risk Risk Management, ok but what s risk? risk is the pain of being wrong Market Risk: Risk of loss due to a change in market price Counterparty Risk: Risk

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

Joint Distribution of Stock Market Returns and Trading Volume

Joint Distribution of Stock Market Returns and Trading Volume Rev. Integr. Bus. Econ. Res. Vol 5(3) 0 Joint Distribution of Stock Market Returns and Trading Volume Muhammad Idrees Ahmad * Department of Mathematics and Statistics, Sultan Qaboos Universit, Muscat,

More information

CHAPTER 6. ' From the table the z value corresponding to this value Z = 1.96 or Z = 1.96 (d) P(Z >?) =

CHAPTER 6. ' From the table the z value corresponding to this value Z = 1.96 or Z = 1.96 (d) P(Z >?) = Solutions to End-of-Section and Chapter Review Problems 225 CHAPTER 6 6.1 (a) P(Z < 1.20) = 0.88493 P(Z > 1.25) = 1 0.89435 = 0.10565 P(1.25 < Z < 1.70) = 0.95543 0.89435 = 0.06108 (d) P(Z < 1.25) or Z

More information

9/17/2015. Basic Statistics for the Healthcare Professional. Relax.it won t be that bad! Purpose of Statistic. Objectives

9/17/2015. Basic Statistics for the Healthcare Professional. Relax.it won t be that bad! Purpose of Statistic. Objectives Basic Statistics for the Healthcare Professional 1 F R A N K C O H E N, M B B, M P A D I R E C T O R O F A N A L Y T I C S D O C T O R S M A N A G E M E N T, LLC Purpose of Statistic 2 Provide a numerical

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

Manager Comparison Report June 28, Report Created on: July 25, 2013

Manager Comparison Report June 28, Report Created on: July 25, 2013 Manager Comparison Report June 28, 213 Report Created on: July 25, 213 Page 1 of 14 Performance Evaluation Manager Performance Growth of $1 Cumulative Performance & Monthly s 3748 3578 348 3238 368 2898

More information

FNCE 4030 Fall 2012 Roberto Caccia, Ph.D. Midterm_2a (2-Nov-2012) Your name:

FNCE 4030 Fall 2012 Roberto Caccia, Ph.D. Midterm_2a (2-Nov-2012) Your name: Answer the questions in the space below. Written answers require no more than few compact sentences to show you understood and master the concept. Show your work to receive partial credit. Points are as

More information

Unit 2 Statistics of One Variable

Unit 2 Statistics of One Variable Unit 2 Statistics of One Variable Day 6 Summarizing Quantitative Data Summarizing Quantitative Data We have discussed how to display quantitative data in a histogram It is useful to be able to describe

More information

Monetary Economics Measuring Asset Returns. Gerald P. Dwyer Fall 2015

Monetary Economics Measuring Asset Returns. Gerald P. Dwyer Fall 2015 Monetary Economics Measuring Asset Returns Gerald P. Dwyer Fall 2015 WSJ Readings Readings this lecture, Cuthbertson Ch. 9 Readings next lecture, Cuthbertson, Chs. 10 13 Measuring Asset Returns Outline

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

Random Variables and Probability Distributions

Random Variables and Probability Distributions Chapter 3 Random Variables and Probability Distributions Chapter Three Random Variables and Probability Distributions 3. Introduction An event is defined as the possible outcome of an experiment. In engineering

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

2009/2010 CAIA Prerequisite Diagnostic Review (PDR) And Answer Key

2009/2010 CAIA Prerequisite Diagnostic Review (PDR) And Answer Key 2009/2010 CAIA Prerequisite Diagnostic Review (PDR) And Answer Key Form B --------------------------------------------------------------------------------- Candidates registered for the program are assumed

More information

Time series analysis on return of spot gold price

Time series analysis on return of spot gold price Time series analysis on return of spot gold price Team member: Tian Xie (#1371992) Zizhen Li(#1368493) Contents Exploratory Analysis... 2 Data description... 2 Data preparation... 2 Basics Stats... 2 Unit

More information

Diploma Part 2. Quantitative Methods. Examiner s Suggested Answers

Diploma Part 2. Quantitative Methods. Examiner s Suggested Answers Diploma Part 2 Quantitative Methods Examiner s Suggested Answers Question 1 (a) The binomial distribution may be used in an experiment in which there are only two defined outcomes in any particular trial

More information

Modern Methods of Data Analysis - SS 2009

Modern Methods of Data Analysis - SS 2009 Modern Methods of Data Analysis Lecture II (7.04.09) Contents: Characterize data samples Characterize distributions Correlations, covariance Reminder: Average of a Sample arithmetic mean of data set: weighted

More information

AN INTRODUCTION TO RISK AND RETURN. Chapter 7

AN INTRODUCTION TO RISK AND RETURN. Chapter 7 1 AN INTRODUCTION TO RISK AND RETURN Chapter 7 Learning Objectives 2 1. Calculate realized and expected rates of return and risk. 2. Describe the historical pattern of financial market returns. 3. Compute

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

Lecture 1: Empirical Properties of Returns

Lecture 1: Empirical Properties of Returns Lecture 1: Empirical Properties of Returns Econ 589 Eric Zivot Spring 2011 Updated: March 29, 2011 Daily CC Returns on MSFT -0.3 r(t) -0.2-0.1 0.1 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996

More information

Econ 422 Eric Zivot Summer 2004 Final Exam Solutions

Econ 422 Eric Zivot Summer 2004 Final Exam Solutions Econ 422 Eric Zivot Summer 2004 Final Exam Solutions This is a closed book exam. However, you are allowed one page of notes (double-sided). Answer all questions. For the numerical problems, if you make

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

BUSM 411: Derivatives and Fixed Income

BUSM 411: Derivatives and Fixed Income BUSM 411: Derivatives and Fixed Income 3. Uncertainty and Risk Uncertainty and risk lie at the core of everything we do in finance. In order to make intelligent investment and hedging decisions, we need

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

Application of Conditional Autoregressive Value at Risk Model to Kenyan Stocks: A Comparative Study

Application of Conditional Autoregressive Value at Risk Model to Kenyan Stocks: A Comparative Study American Journal of Theoretical and Applied Statistics 2017; 6(3): 150-155 http://www.sciencepublishinggroup.com/j/ajtas doi: 10.11648/j.ajtas.20170603.13 ISSN: 2326-8999 (Print); ISSN: 2326-9006 (Online)

More information

Overview/Outline. Moving beyond raw data. PSY 464 Advanced Experimental Design. Describing and Exploring Data The Normal Distribution

Overview/Outline. Moving beyond raw data. PSY 464 Advanced Experimental Design. Describing and Exploring Data The Normal Distribution PSY 464 Advanced Experimental Design Describing and Exploring Data The Normal Distribution 1 Overview/Outline Questions-problems? Exploring/Describing data Organizing/summarizing data Graphical presentations

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

Diploma in Business Administration Part 2. Quantitative Methods. Examiner s Suggested Answers

Diploma in Business Administration Part 2. Quantitative Methods. Examiner s Suggested Answers Cumulative frequency Diploma in Business Administration Part Quantitative Methods Examiner s Suggested Answers Question 1 Cumulative Frequency Curve 1 9 8 7 6 5 4 3 1 5 1 15 5 3 35 4 45 Weeks 1 (b) x f

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

1 Volatility Definition and Estimation

1 Volatility Definition and Estimation 1 Volatility Definition and Estimation 1.1 WHAT IS VOLATILITY? It is useful to start with an explanation of what volatility is, at least for the purpose of clarifying the scope of this book. Volatility

More information

Econ 424/CFRM 462 Portfolio Risk Budgeting

Econ 424/CFRM 462 Portfolio Risk Budgeting Econ 424/CFRM 462 Portfolio Risk Budgeting Eric Zivot August 14, 2014 Portfolio Risk Budgeting Idea: Additively decompose a measure of portfolio risk into contributions from the individual assets in the

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

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

The Central Limit Theorem (Solutions) COR1-GB.1305 Statistics and Data Analysis

The Central Limit Theorem (Solutions) COR1-GB.1305 Statistics and Data Analysis The Central Limit Theorem (Solutions) COR1-GB1305 Statistics and Data Analysis 1 You draw a random sample of size n = 64 from a population with mean µ = 50 and standard deviation σ = 16 From this, you

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

Normal Probability Distributions

Normal Probability Distributions Normal Probability Distributions Properties of Normal Distributions The most important probability distribution in statistics is the normal distribution. Normal curve A normal distribution is a continuous

More information

Handout 4 numerical descriptive measures part 2. Example 1. Variance and Standard Deviation for Grouped Data. mf N 535 = = 25

Handout 4 numerical descriptive measures part 2. Example 1. Variance and Standard Deviation for Grouped Data. mf N 535 = = 25 Handout 4 numerical descriptive measures part Calculating Mean for Grouped Data mf Mean for population data: µ mf Mean for sample data: x n where m is the midpoint and f is the frequency of a class. Example

More information

Risks for the Long Run: A Potential Resolution of Asset Pricing Puzzles

Risks for the Long Run: A Potential Resolution of Asset Pricing Puzzles : A Potential Resolution of Asset Pricing Puzzles, JF (2004) Presented by: Esben Hedegaard NYUStern October 12, 2009 Outline 1 Introduction 2 The Long-Run Risk Solving the 3 Data and Calibration Results

More information

University 18 Lessons Financial Management. Unit 12: Return, Risk and Shareholder Value

University 18 Lessons Financial Management. Unit 12: Return, Risk and Shareholder Value University 18 Lessons Financial Management Unit 12: Return, Risk and Shareholder Value Risk and Return Risk and Return Security analysis is built around the idea that investors are concerned with two principal

More information

Numerical Descriptions of Data

Numerical Descriptions of Data Numerical Descriptions of Data Measures of Center Mean x = x i n Excel: = average ( ) Weighted mean x = (x i w i ) w i x = data values x i = i th data value w i = weight of the i th data value Median =

More information

IOP 201-Q (Industrial Psychological Research) Tutorial 5

IOP 201-Q (Industrial Psychological Research) Tutorial 5 IOP 201-Q (Industrial Psychological Research) Tutorial 5 TRUE/FALSE [1 point each] Indicate whether the sentence or statement is true or false. 1. To establish a cause-and-effect relation between two variables,

More information

34.S-[F] SU-02 June All Syllabus Science Faculty B.Sc. I Yr. Stat. [Opt.] [Sem.I & II] - 1 -

34.S-[F] SU-02 June All Syllabus Science Faculty B.Sc. I Yr. Stat. [Opt.] [Sem.I & II] - 1 - [Sem.I & II] - 1 - [Sem.I & II] - 2 - [Sem.I & II] - 3 - Syllabus of B.Sc. First Year Statistics [Optional ] Sem. I & II effect for the academic year 2014 2015 [Sem.I & II] - 4 - SYLLABUS OF F.Y.B.Sc.

More information

DATA SUMMARIZATION AND VISUALIZATION

DATA SUMMARIZATION AND VISUALIZATION APPENDIX DATA SUMMARIZATION AND VISUALIZATION PART 1 SUMMARIZATION 1: BUILDING BLOCKS OF DATA ANALYSIS 294 PART 2 PART 3 PART 4 VISUALIZATION: GRAPHS AND TABLES FOR SUMMARIZING AND ORGANIZING DATA 296

More information

2018 CFA Exam Prep. IFT High-Yield Notes. Quantitative Methods (Sample) Level I. Table of Contents

2018 CFA Exam Prep. IFT High-Yield Notes. Quantitative Methods (Sample) Level I. Table of Contents 2018 CFA Exam Prep IFT High-Yield Notes Quantitative Methods (Sample) Level I This document should be read in conjunction with the corresponding readings in the 2018 Level I CFA Program curriculum. Some

More information

Data screening, transformations: MRC05

Data screening, transformations: MRC05 Dale Berger Data screening, transformations: MRC05 This is a demonstration of data screening and transformations for a regression analysis. Our interest is in predicting current salary from education level

More information

Martingales, Part II, with Exercise Due 9/21

Martingales, Part II, with Exercise Due 9/21 Econ. 487a Fall 1998 C.Sims Martingales, Part II, with Exercise Due 9/21 1. Brownian Motion A process {X t } is a Brownian Motion if and only if i. it is a martingale, ii. t is a continuous time parameter

More information

Financial Returns: Stylized Features and Statistical Models

Financial Returns: Stylized Features and Statistical Models Financial Returns: Stylized Features and Statistical Models Qiwei Yao Department of Statistics London School of Economics q.yao@lse.ac.uk p.1 Definitions of returns Empirical evidence: daily prices in

More information

Mean-Variance Portfolio Theory

Mean-Variance Portfolio Theory Mean-Variance Portfolio Theory Lakehead University Winter 2005 Outline Measures of Location Risk of a Single Asset Risk and Return of Financial Securities Risk of a Portfolio The Capital Asset Pricing

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

This homework assignment uses the material on pages ( A moving average ).

This homework assignment uses the material on pages ( A moving average ). Module 2: Time series concepts HW Homework assignment: equally weighted moving average This homework assignment uses the material on pages 14-15 ( A moving average ). 2 Let Y t = 1/5 ( t + t-1 + t-2 +

More information

32.S [F] SU 02 June All Syllabus Science Faculty B.A. I Yr. Stat. [Opt.] [Sem.I & II] 1

32.S [F] SU 02 June All Syllabus Science Faculty B.A. I Yr. Stat. [Opt.] [Sem.I & II] 1 32.S [F] SU 02 June 2014 2015 All Syllabus Science Faculty B.A. I Yr. Stat. [Opt.] [Sem.I & II] 1 32.S [F] SU 02 June 2014 2015 All Syllabus Science Faculty B.A. I Yr. Stat. [Opt.] [Sem.I & II] 2 32.S

More information

Lecture # 35. Prof. John W. Sutherland. Nov. 16, 2005

Lecture # 35. Prof. John W. Sutherland. Nov. 16, 2005 Lecture # 35 Prof. John W. Sutherland Nov. 16, 2005 More on Control Charts for Individuals Last time we worked with X and Rm control charts. Remember -- only makes sense to use such a chart when the formation

More information

μ: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics

μ: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics μ: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics CONTENTS Estimating parameters The sampling distribution Confidence intervals for μ Hypothesis tests for μ The t-distribution Comparison

More information

Simple Descriptive Statistics

Simple Descriptive Statistics Simple Descriptive Statistics These are ways to summarize a data set quickly and accurately The most common way of describing a variable distribution is in terms of two of its properties: Central tendency

More information

Summarising Data. Summarising Data. Examples of Types of Data. Types of Data

Summarising Data. Summarising Data. Examples of Types of Data. Types of Data Summarising Data Summarising Data Mark Lunt Arthritis Research UK Epidemiology Unit University of Manchester Today we will consider Different types of data Appropriate ways to summarise these data 17/10/2017

More information

THE DYNAMICS OF PRECIOUS METAL MARKETS VAR: A GARCH-TYPE APPROACH. Yue Liang Master of Science in Finance, Simon Fraser University, 2018.

THE DYNAMICS OF PRECIOUS METAL MARKETS VAR: A GARCH-TYPE APPROACH. Yue Liang Master of Science in Finance, Simon Fraser University, 2018. THE DYNAMICS OF PRECIOUS METAL MARKETS VAR: A GARCH-TYPE APPROACH by Yue Liang Master of Science in Finance, Simon Fraser University, 2018 and Wenrui Huang Master of Science in Finance, Simon Fraser University,

More information

Templeton Non-US Equity. Imperial County Employees' Retirement System. February SEATTLE LOS ANGELES

Templeton Non-US Equity. Imperial County Employees' Retirement System. February SEATTLE LOS ANGELES Templeton Non-US Equity Imperial County Employees' Retirement System February 14 SEATTLE 6.6.37 LOS ANGELES 31.97.1777 www.wurts.com MANAGER OVERVIEW Firm Ownership Firm Name Product Name Product Total

More information

2 Exploring Univariate Data

2 Exploring Univariate Data 2 Exploring Univariate Data A good picture is worth more than a thousand words! Having the data collected we examine them to get a feel for they main messages and any surprising features, before attempting

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

GARCH Models. Instructor: G. William Schwert

GARCH Models. Instructor: G. William Schwert APS 425 Fall 2015 GARCH Models Instructor: G. William Schwert 585-275-2470 schwert@schwert.ssb.rochester.edu Autocorrelated Heteroskedasticity Suppose you have regression residuals Mean = 0, not autocorrelated

More information

Market Risk Analysis Volume I

Market Risk Analysis Volume I Market Risk Analysis Volume I Quantitative Methods in Finance Carol Alexander John Wiley & Sons, Ltd List of Figures List of Tables List of Examples Foreword Preface to Volume I xiii xvi xvii xix xxiii

More information

The Characteristics of Stock Market Volatility. By Daniel R Wessels. June 2006

The Characteristics of Stock Market Volatility. By Daniel R Wessels. June 2006 The Characteristics of Stock Market Volatility By Daniel R Wessels June 2006 Available at: www.indexinvestor.co.za 1. Introduction Stock market volatility is synonymous with the uncertainty how macroeconomic

More information

Econ 6900: Statistical Problems. Instructor: Yogesh Uppal

Econ 6900: Statistical Problems. Instructor: Yogesh Uppal Econ 6900: Statistical Problems Instructor: Yogesh Uppal Email: yuppal@ysu.edu Lecture Slides 4 Random Variables Probability Distributions Discrete Distributions Discrete Uniform Probability Distribution

More information

St. Xavier s College Autonomous Mumbai F.Y.B.A. Syllabus For 1 st Semester Course in Statistics (June 2017 onwards)

St. Xavier s College Autonomous Mumbai F.Y.B.A. Syllabus For 1 st Semester Course in Statistics (June 2017 onwards) St. Xavier s College Autonomous Mumbai Syllabus For 1 st Semester Course in Statistics (June 2017 onwards) Contents: Theory Syllabus for Courses: A.STA.1.01 Descriptive Statistics (A). Practical Course

More information

GETTING STARTED. To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop

GETTING STARTED. To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop Minitab 14 1 GETTING STARTED To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop The Minitab session will come up like this 2 To SAVE FILE 1. Click File>Save Project

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