Financial Risk Forecasting Chapter 1 Financial markets, prices and risk

Size: px
Start display at page:

Download "Financial Risk Forecasting Chapter 1 Financial markets, prices and risk"

Transcription

1 Financial Risk Forecasting Chapter 1 Financial markets, prices and risk Jon Danielsson 2017 London School of Economics To accompany Financial Risk Forecasting Published by Wiley 2011 Version 3.1, October 2017 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 1 of 103

2 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 2 of 103

3 The focus of this chapter Statistical techniques for analyzing prices and returns in financial markets Stock market indices, e.g. the S&P 500 Prices, returns and volatilities Three stylized facts of financial returns: 1. Volatility clusters 2. Fat tails 3. Nonlinear dependence See Appendix A for more detailed discussion on the statistical methods See Appendices B and C for introduction to R and Matlab Financial Risk Forecasting 2011,2017 Jon Danielsson, page 3 of 103

4 Notation T Sample size t = 1,...,T A particular observation period (e.g. a day) P t Price at time t R t = Pt P t 1 P t 1 Simple return Y t = log Pt P t 1 Continuously compounded return y t A sample realization of Y t σ Unconditional volatility σ t Conditional volatility K Number of assets w K 1 vector of portfolio weights ν Degrees of freedom of the Student-t ι Tail index d dividends Financial Risk Forecasting 2011,2017 Jon Danielsson, page 4 of 103

5 Prices, returns and indices Financial Risk Forecasting 2011,2017 Jon Danielsson, page 5 of 103

6 Total returns USA Equities Bonds profit loss Financial Risk Forecasting 2011,2017 Jon Danielsson, page 6 of 103

7 Total returns Austria Equities Bonds profit loss Financial Risk Forecasting 2011,2017 Jon Danielsson, page 7 of 103

8 Total returns South Africa Australia USA New Zealand Sweden Canada Denmark Finland UK Netherlands Switzerland Ireland Spain Portugal France Belgium Austria Equities Bonds Financial Risk Forecasting 2011,2017 Jon Danielsson, page 8 of 103

9 Stock indices A stock market index shows how a representative portfolio of stock prices changes over time A price-weighted index weighs stocks based on their prices A stock trading at $100 makes up 10 times more of total than a stock trading at $10 A value-weighted index weighs stocks according to the total market value of their outstanding shares Impact of change in stock price proportional to overall market value Financial Risk Forecasting 2011,2017 Jon Danielsson, page 9 of 103

10 Stock indices The most widely used index is the Standard & Poor s 500 (S&P 500) largest 500 traded companies in the US Examples of value-weighted indices: S&P 500, FTSE 100 (UK), TOPIX (Japan) Examples of price-weighted indices: Dow Jones Industrial Average (US), Nikkei 225 (Japan) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 10 of 103

11 Prices and returns Denote prices by P t. Usually we are more interested in the return we make on an investment Definition Return The relative change in the price of a financial asset over a given time interval, often expressed as a percentage There are two types of returns: 1. Simple (R) 2. Compound (Y) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 11 of 103

12 Simple returns Definition A simple return is the percentage change in prices R t = P t P t 1 P t 1 Including dividends R t = P t P t 1 +d P t 1 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 12 of 103

13 Continuously compounded returns Definition The logarithm of gross return ( ) Pt Y t = log(1+r t ) = log = log(p t ) log(p t 1 ) P t 1 P t+1 = P t e R Financial Risk Forecasting 2011,2017 Jon Danielsson, page 13 of 103

14 Simple and continuous The difference between R t and Y t is not large for daily returns As the time between observations goes to zero, so does the difference between the two measures: lim t 0 Y t = R t log(1000) log(990) = = log(1000) log(800) = = Financial Risk Forecasting 2011,2017 Jon Danielsson, page 14 of 103

15 Symmetry Continuous returns are symmetric ( ) ( ) log =log Simple are not Financial Risk Forecasting 2011,2017 Jon Danielsson, page 15 of 103

16 Simple returns are Used for accounting purposes Investors are usually concerned with simple returns Continuously compounded returns have some advantages Mathematics is easier (e.g. how returns aggregate over many periods, used in Chapter 4) Used in derivatives pricing, e.g. the Black Scholes model Financial Risk Forecasting 2011,2017 Jon Danielsson, page 16 of 103

17 Issues for portfolios R t,portfolio return on a portfolio Weighted sum of returns of individual assets: R t,portfolio = K k=1 w k R t,k = w R t While ( ) Pt,portfolio Y t,portfolio = log P t 1,portfolio K k=1 ( ) Pt,k w k log P t 1,k Because the log of a sum does not equal the sum of logs Financial Risk Forecasting 2011,2017 Jon Danielsson, page 17 of 103

18 S&P 500 index Great Depression Internet Bubble US Civil War 2007 crisis 10 5 Nifty fifty Financial Risk Forecasting 2011,2017 Jon Danielsson, page 18 of 103

19 40 % 30 % 20 % 10 % 0 % 10 % S&P 500 returns US Civil War Great Depression Asian crisis 20 % 30 % 1987 crash 2008 crisis Financial Risk Forecasting 2011,2017 Jon Danielsson, page 19 of 103

20 S&P 500 statistics 1929 to 2016, daily returns Mean % Standard error 1.143% Min 20.47% Max 16.60% Skewness Kurtosis Note how small mean is compared to the s.e. (volatility) But mean grows at rate T and the volatility at T Financial Risk Forecasting 2011,2017 Jon Danielsson, page 20 of 103

21 Three stylized facts Present in most financial returns Volatility clusters Fat tails Nonlinear dependence Financial Risk Forecasting 2011,2017 Jon Danielsson, page 21 of 103

22 Software Excel is useless for we are trying to do here Four main software choices 1. Julia 2. Python (Numpy) 3. R 4. Matlab Go to Financial Risk Forecasting 2011,2017 Jon Danielsson, page 22 of 103

23 Data Financial data can be obtained from many sources, e.g. 1. wrds.wharton.upenn.edu (CRSP) 2. Bloomberg 3. finance.google.com 4. finance.yahoo.com (often best but does not always work) Best to save data as a CSV file and import that into R/Matlab Get SP-500 CSV file from Financial Risk Forecasting 2011,2017 Jon Danielsson, page 23 of 103

24 Matlab sp500 = csvread( sp 500.csv,1); plot (sp500 (:,2)) y = diff ( log(sp500 (:,2))); plot (y) mean(y) std (y) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 24 of 103

25 R sp500 = read. csv( sp 500.csv ) plot (sp500 [,2], type= l ) y = diff ( log(sp500 [,2])) plot (y, type= l ) mean(y) sd(y) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 25 of 103

26 Volatility Financial Risk Forecasting 2011,2017 Jon Danielsson, page 26 of 103

27 Volatility The standard deviation/error of returns Two concepts of volatility: Unconditional volatility is volatility over an entire time period (σ) Conditional volatility is volatility in a given time period, conditional on what happened before (σ t ) Clear evidence of cyclical patterns in volatility over time, both in the short run and the long run Financial Risk Forecasting 2011,2017 Jon Danielsson, page 27 of 103

28 Daily volatility Calculations σ = 1 N 1 N (y i µ) 2 i=1 Annualised N 1 N (y i µ) 2 i=1 Matlab std (y) sqrt (250) std(y) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 28 of 103

29 40 % Cycles in volatility SP % 20 % 10 % 0 % 1920 s 1940 s 1960 s 1980 s 2000 s Financial Risk Forecasting 2011,2017 Jon Danielsson, page 29 of 103

30 40 % Cycles in volatility SP % 20 % mean 10 % 0 % Financial Risk Forecasting 2011,2017 Jon Danielsson, page 30 of 103

31 80 % Cycles in volatility SP % 40 % 20 % mean Financial Risk Forecasting 2011,2017 Jon Danielsson, page 31 of 103

32 Volatility Returns Simulated volatility clusters 8 high low Financial Risk Forecasting 2011,2017 Jon Danielsson, page 32 of 103

33 Volatility clusters Volatility changes over time in a way that is partially predictable Volatility clusters Engle (1982) suggested a way to model this phenomenon His autoregressive conditional heteroskedasticity (ARCH) model is discussed in Chapter 2 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 33 of 103

34 Autocorrelations Correlations measure how 2 variables (x,y) move together Corr(x,y) = 1 N 2 N (x µ x )(y µ y ) i=1 Autocorrelations measure how a single variable is correlated with itself 1 lag ˆβ 1 = Corr(x 1,...,N 1,x 2,...,N ) N lags ˆβ i = Corr(x 1,...,N i,x i+1,...,n ) Matlab autocorr (y,20) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 34 of 103

35 If autocorrelations are statistically significant there is evidence for predictability The coefficients of an autocorrelation function (ACF) give the correlation between observations and lags We will test both returns (y), predictability in mean (price forecasting or alpha) And returns squared (y 2 ), predictability in volatility Financial Risk Forecasting 2011,2017 Jon Danielsson, page 35 of 103

36 The LB test for autocorrelations Joint significance of autocorrelation coefficients (ˆβ 1, ˆβ 2,..., ˆβ N ) can be tested by using the Ljung-Box (LB) test J N = T(T +2) N i=1 ˆβ i 2 T N χ2 (N) Matlab [h, pvalue, stat]=lbqtest (y,20) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 36 of 103

37 S&P to 2015 ACF of daily returns ACF Lags Financial Risk Forecasting 2011,2017 Jon Danielsson, page 37 of 103

38 S&P to 2015 ACF of squared daily returns ACF Lags Financial Risk Forecasting 2011,2017 Jon Danielsson, page 38 of 103

39 LB tests for S&P 500 Daily returns N LB statistic, 21 lags p-value 22, , < Daily returns squared T LB statistic, 21 lags p-value 22,752 12,633.0 < ,500 4,702.1 < Financial Risk Forecasting 2011,2017 Jon Danielsson, page 39 of 103

40 Fat tails Financial Risk Forecasting 2011,2017 Jon Danielsson, page 40 of 103

41 Definition Fat tails A random variable is said to have fat tails if it exhibits more extreme outcomes than a normally distributed random variable with the same mean and variance The mean variance model assumes normality Financial Risk Forecasting 2011,2017 Jon Danielsson, page 41 of 103

42 Fat tails The tails are the extreme left and right parts of a distribution If the tails are fat, there is a higher probability of extreme outcomes than one would get from the normal distribution with the same mean and variance Also implies that there is a lower probability of non-extreme outcomes Probabilities are between zero and one so the area under the distribution is one Financial Risk Forecasting 2011,2017 Jon Danielsson, page 42 of 103

43 The Student t distribution The degrees of freedom, (ν), of the Student t distribution indicate how fat the tails are ν = implies the normal ν < 2 superfat tails For a typical stock 3 < ν < 5 The Student t is convenient when we need a fat tailed distribution Financial Risk Forecasting 2011,2017 Jon Danielsson, page 43 of 103

44 0.4 Tails 0.3 probability outcome Financial Risk Forecasting 2011,2017 Jon Danielsson, page 44 of 103

45 0.4 Tails 0.3 probability outcome Financial Risk Forecasting 2011,2017 Jon Danielsson, page 45 of 103

46 normal Student t(2) Tails probability outcome Financial Risk Forecasting 2011,2017 Jon Danielsson, page 46 of 103

47 normal Student t(2) chi 2 Tails probability outcome Financial Risk Forecasting 2011,2017 Jon Danielsson, page 47 of 103

48 normal Student t(2) chi 2 Tails Zoom probability outcome Financial Risk Forecasting 2011,2017 Jon Danielsson, page 48 of 103

49 Probability of extreme outcomes If S&P 500 returns were normally distributed, the probability of a one-day drop of 23% would be ! The table below gives probabilities of different returns assuming normality Returns above or below Probability 1% % % % % % Financial Risk Forecasting 2011,2017 Jon Danielsson, page 49 of 103

50 Max and min of S&P 500 returns Per decade, daily returns 10 % 0 % 10 % 20 s 30 s 40 s 50 s 60 s 70 s 90 s 00 s 20 % 80s 10 s Financial Risk Forecasting 2011,2017 Jon Danielsson, page 50 of 103

51 10 % Max and min of S&P 500 returns Per year, daily returns 0 % 10 % % Financial Risk Forecasting 2011,2017 Jon Danielsson, page 51 of 103

52 0.5 Empirical density vs. normal S&P 500 daily returns, 2000 to Density Outcomes Financial Risk Forecasting 2011,2017 Jon Danielsson, page 52 of 103

53 Empirical density vs. normal S&P 500 daily returns, 2000 to 2015 Returns Normal Cumulative probability data higher than normal data lower data higher data lower than normal Outcomes Financial Risk Forecasting 2011,2017 Jon Danielsson, page 53 of 103

54 0.15 Empirical density vs. normal S&P 500 daily returns, 2000 to 2015 Returns Normal Cumulative probability Outcomes Financial Risk Forecasting 2011,2017 Jon Danielsson, page 54 of 103

55 Non normality and fat tails Three observations: 1. Peak is higher than normal 2. Sides are lower than normal 3. Tails are much thicker (fatter) than normal Financial Risk Forecasting 2011,2017 Jon Danielsson, page 55 of 103

56 Identification of fat tails Two main approaches for identifying and analyzing tails of financial returns: statistical tests and graphical methods The Jarque-Bera (JB) and the Kolmogorov-Smirnov (KS) tests can be used to test for fat tails QQ plots allow us to analyze tails graphically by comparing quantiles of sample data with quantiles of reference distribution An alternative graphical method for detecting fat tails is plotting sequential moments Financial Risk Forecasting 2011,2017 Jon Danielsson, page 56 of 103

57 Jarque Bera test The Jarque Bera (JB) test is a test for normality and may point to fat tails if rejected The JB test statistic is Matlab [h,p]=jbtest (y) T 6 Skewness2 + T 24 (Kurtosis 3)2 χ 2 (2) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 57 of 103

58 Kolmogorov-Smirnov test Based on minimum distance estimation comparing sample with a reference distribution, like the normal Matlab [h,p] = kstest (y) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 58 of 103

59 QQ plots A QQ plot (quantile-quantile plot) compares the quantiles of sample data against quantiles of reference distribution Used to assess whether a set of observations has a particular distribution Can also be used to determine whether two datasets have the same distribution Matlab qqplot (y) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 59 of 103

60 Sample quantiles Daily S&P 500 returns vs. Normal QQ plot, 1989 to 2015 more extremes than normal Theoretical quantiles more extremes than normal Financial Risk Forecasting 2011,2017 Jon Danielsson, page 60 of 103

61 Daily S&P 500 returns vs. Normal Many observations seem to deviate from normality and the QQ-plot has clear S shape Indicates that returns have fatter tails than normal, but how much fatter? We can use Student-t with different degrees of freedom as reference distribution (fewer degrees of freedom give fatter tails) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 61 of 103

62 Daily S&P 500 returns vs. Student t(5) 0.10 Sample quantiles Theoretical quantiles Financial Risk Forecasting 2011,2017 Jon Danielsson, page 62 of 103

63 Daily S&P 500 returns vs. Student t(4) 0.10 Sample quantiles Theoretical quantiles Financial Risk Forecasting 2011,2017 Jon Danielsson, page 63 of 103

64 Daily S&P 500 returns vs. Student t(3) 0.10 Sample quantiles Theoretical quantiles Financial Risk Forecasting 2011,2017 Jon Danielsson, page 64 of 103

65 Sequential moments Thickness of tail measured by tail index, ι, where lower ι indicates thicker tails (formal definition in Chapter 9) For Student-t, the tail index corresponds to degrees of freedom Sequential moments makes use of sample moments of data, where the m-th centered moment is E[(X µ) m ] = which can only be calculated if m < ι (x µ) m f(x)dx Financial Risk Forecasting 2011,2017 Jon Danielsson, page 65 of 103

66 Sequential moments Tail thickness can be analyzed graphically by plotting moments of the data as more observations are added: 1 t t i=1 x t m For example, if 3rd moment converges but 5th moment does not, the tail index should be between 3 and 5 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 66 of 103

67 Sequential moments from Student-t(4) observations Moments th 3rd Number of observations Financial Risk Forecasting 2011,2017 Jon Danielsson, page 67 of 103

68 Sequential moments from Student-t(4) observations 5th 3rd Moments Number of observations Financial Risk Forecasting 2011,2017 Jon Danielsson, page 68 of 103

69 Sequential moments for oil price returns 400 January 1990 to August th 3rd Moments Number of observations Financial Risk Forecasting 2011,2017 Jon Danielsson, page 69 of 103

70 Nonlinear dependence Financial Risk Forecasting 2011,2017 Jon Danielsson, page 70 of 103

71 Correlations Correlations are a linear concept y = αx +ǫ Then α is proportional to the correlation between x and y A different way to say that is linear dependence The relationship between the two variables is always the same regardless of the magnitude of the variables Under the normal distribution, dependence is linear Key assumption for the mean variance model Financial Risk Forecasting 2011,2017 Jon Danielsson, page 71 of 103

72 Nonlinear dependence Nonlinear dependence (NLD) implies that dependence between variables changes depending on some factor. In finance, perhaps according to market conditions Example: Different returns are relatively independent during normal times, but highly dependent during crises If returns were jointly normal, correlations would decrease for extreme events, but empirical evidence shows exactly the opposite Assumption of linear dependence does not hold in general Financial Risk Forecasting 2011,2017 Jon Danielsson, page 72 of 103

73 Evidence of nonlinear dependence Daily returns for Microsoft, Morgan Stanley, Goldman Sachs and Citigroup May 5, June 12, 2015 MSFT MS GS MS 46% GS 46% 81% C 37% 65% 63% August 1, August 15, 2007 MSFT MS GS MS 93% GS 82% 94% C 87% 93% 92% Financial Risk Forecasting 2011,2017 Jon Danielsson, page 73 of 103

74 Implications of fat tails Non normality and fat tails have important consequences in finance Assumption of normality may lead to a gross underestimation of risk However, the use of non-normal techniques is highly complicated, and unless correctly used, may lead to incorrect outcomes Financial Risk Forecasting 2011,2017 Jon Danielsson, page 74 of 103

75 Volatility and fat tails Volatility is the a correct measure of risk if and only if the returns are normal If they follow the Student-t or any of the fats, then volatility will only be partially correct as a risk measure We discuss this in more detail in Chapter 4 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 75 of 103

76 The quant crisis of 2007 Many hedge funds using quantitative trading strategies ran into serious difficulties in June 2007 The correlations in their assets increased very sharply So they were unable to get rid of risk Financial Risk Forecasting 2011,2017 Jon Danielsson, page 76 of 103

77 Goldman Sachs s flagship Global Alpha fund (summer of 2007) We were seeing things that were 25 standard deviation moves, several days in a row, said David Viniar, Goldmans chief financial officer. There have been issues in some of the other quantitative spaces. But nothing like what we saw last week. Financial Risk Forecasting 2011,2017 Jon Danielsson, page 77 of 103

78 Lehmans (summer of 2007) Wednesday is the type of day people will remember in quantland for a very long time, said Mr. Rothman, a University of Chicago Ph.D. who ran a quantitative fund before joining Lehman Brothers. Events that models only predicted would happen once in 10,000 years happened every day for three days. Financial Risk Forecasting 2011,2017 Jon Danielsson, page 78 of 103

79 Volatility and fat tails Goldman s 25 sigma event under the normal has a probability of Age of the universe is estimated to be days while the earth is days old Goldman expected to suffer a one day loss of this magnitude less than one every universes Or perhaps the distributions were really not Gaussian Financial Risk Forecasting 2011,2017 Jon Danielsson, page 79 of 103

80 Copulas Financial Risk Forecasting 2011,2017 Jon Danielsson, page 80 of 103

81 Exceedance correlations Exceedance correlations show the correlations of (standardized) stock returns X and Y as being conditional on exceeding some threshold, i.e. { Corr[X,Y X Q X (p) and Y Q Y (p)], for p 0.5 ρ(p) = Corr[X,Y X > Q X (p) and Y > Q Y (p)], for p > 0.5 where Q X (p) and Q Y (p) are the p-th quantiles of X and Y given a distributional assumption Can be used to detect NLD Financial Risk Forecasting 2011,2017 Jon Danielsson, page 81 of 103

82 Quantile correlation Exceedance plot Bivariate normal and Student-t 0.6 Normal ρ= Normal ρ=0.7 Student t(3) ρ= Probability Financial Risk Forecasting 2011,2017 Jon Danielsson, page 82 of 103

83 Quantile correlation Empirical exceedance plot Disney and IBM daily returns, January 1986 to June Data Normal Student t(3) Probability Financial Risk Forecasting 2011,2017 Jon Danielsson, page 83 of 103

84 Copulas and nonlinear dependence How do we model nonlinear dependence more formally? One approach is multivariate volatility models (see Chapter 3) Alternatively we can use copulas, which allow us to create multivariate distributions with a range of types of dependence Financial Risk Forecasting 2011,2017 Jon Danielsson, page 84 of 103

85 Intuition behind copulas A copula is a convenient way to obtain the dependence structure between two or more random variables, taking NLD into account We start with the marginal distributions of each random variable and end up with a copula function The copula function joins the random variables into a single multivariate distribution by using their correlations Financial Risk Forecasting 2011,2017 Jon Danielsson, page 85 of 103

86 Intuition behind copulas The random variables are transformed to uniform distributions using the probability integral transformation The copula models the dependence structure between these uniforms Since the probability integral transform is invertible, the copula also describes the dependence between the original random variables Financial Risk Forecasting 2011,2017 Jon Danielsson, page 86 of 103

87 Theory of copulas Suppose X and Y are two random variables representing returns of two different stocks, with densities f and g: X f and Y g Together, the joint distribution and marginal distributions are represented by the joint density h: (X,Y) h We focus separately on the marginal distributions (F,G) and the copula function C, which combines them into the joint distribution H Financial Risk Forecasting 2011,2017 Jon Danielsson, page 87 of 103

88 Theory of copulas We want to transform X and Y into random variables that are distributed uniformly between 0 and 1, removing individual information from the bivariate density h Theorem 1.1 Let a random variable X have a continuous distribution F, and define a new random variable U as: U = F(X) Then, regardless of the original distribution F: U Uniform(0,1) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 88 of 103

89 Theory of copulas Applying this transformation to X and Y we obtain: U = F(X) and V = G(Y) Using this we arrive at the following theorem Theorem 1.2 Let F be the distribution of X, G the distribution of Y and H the joint distribution of (X,Y). Assume that F and G are continuous. Then there exists a unique copula C such that: H(X,Y) = C(F(X),G(Y)) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 89 of 103

90 Theory of copulas In applications we are more likely to use densities: h(x,y) = f(x) g(y) C(F(X),G(Y)) The copula contains all dependence information in the original density h, but none of the individual information Note that we can construct a joint distribution from any two marginal distributions and any copula, and we can also extract the implied copula and marginal distributions from any joint distribution Financial Risk Forecasting 2011,2017 Jon Danielsson, page 90 of 103

91 The Gaussian copula One example of a copula is the Gaussian copula Let Φ( ) denote the normal (Gaussian) distribution and Φ 1 ( ) its inverse Let U,V [0,1] be uniform random variables and Φ ρ ( ) the bivariate normal with correlation coefficient ρ Then the Gaussian copula function can be written as: C(U,V) = Φ ρ (Φ 1 (U),Φ 1 (V)) This function allows us to join the two marginal distributions into a single bivariate distribution Financial Risk Forecasting 2011,2017 Jon Danielsson, page 91 of 103

92 Application of copulas To illustrate we use the same data on Disney and IBM as used before By comparing a scatterplot for simulated bivariate normal data with one for the empirical data, we see that the two do not have the same joint extremes Financial Risk Forecasting 2011,2017 Jon Danielsson, page 92 of 103

93 Prices & returns Data/Code Volatility Fat tails NLD Issues Copulas Gaussian scatterplot 10 Asset Asset 1 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 93 of 103

94 Empirical scatterplot Daily Disney and IBM returns, January 1986 to June IBM both crash together Disney Financial Risk Forecasting 2011,2017 Jon Danielsson, page 94 of 103

95 Application of copulas We estimate two copulas for the data, a Gaussian copula and a Student-t copula The copulas can be drawn in three dimensions Financial Risk Forecasting 2011,2017 Jon Danielsson, page 95 of 103

96 Fitted Gaussian copula Daily Disney and IBM returns, January 1986 to June Financial Risk Forecasting 2011,2017 Jon Danielsson, page 96 of 103

97 Fitted Student-t copula Daily Disney and IBM returns, January 1986 to June Financial Risk Forecasting 2011,2017 Jon Danielsson, page 97 of 103

98 Application of copulas It can be difficult to compare distributions by looking at three-dimensional graphs Contour plots may give a better comparison Financial Risk Forecasting 2011,2017 Jon Danielsson, page 98 of 103

99 Contours of Gaussian copula Daily Disney and IBM returns, January 1986 to June IBM Disney Financial Risk Forecasting 2011,2017 Jon Danielsson, page 99 of 103

100 Contours of Student-t copula Daily Disney and IBM returns, January 1986 to June IBM Disney Financial Risk Forecasting 2011,2017 Jon Danielsson, page 100 of 103

101 Clayton s copula As noted earlier, there are a number of copulas available One widely used is the Clayton copula, which allows for asymmetric dependence Parameter θ measures the strength of dependence We estimate a Clayton copula for the same data as before Financial Risk Forecasting 2011,2017 Jon Danielsson, page 101 of 103

102 Contours of Clayton s copula, θ = Asset Asset 1 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 102 of 103

103 Contours of Clayton s copula, θ = Daily Disney and IBM returns, January 1986 to June IBM Disney Financial Risk Forecasting 2011,2017 Jon Danielsson, page 103 of 103

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

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

Statistical Analysis of Data from the Stock Markets. UiO-STK4510 Autumn 2015

Statistical Analysis of Data from the Stock Markets. UiO-STK4510 Autumn 2015 Statistical Analysis of Data from the Stock Markets UiO-STK4510 Autumn 2015 Sampling Conventions We observe the price process S of some stock (or stock index) at times ft i g i=0,...,n, we denote it by

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

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

Financial Time Series and Their Characteristics

Financial Time Series and Their Characteristics Financial Time Series and Their Characteristics Egon Zakrajšek Division of Monetary Affairs Federal Reserve Board Summer School in Financial Mathematics Faculty of Mathematics & Physics University of Ljubljana

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 Risk Forecasting Chapter 9 Extreme Value Theory

Financial Risk Forecasting Chapter 9 Extreme Value Theory Financial Risk Forecasting Chapter 9 Extreme Value Theory Jon Danielsson 2017 London School of Economics To accompany Financial Risk Forecasting www.financialriskforecasting.com Published by Wiley 2011

More information

Lecture 6: Non Normal Distributions

Lecture 6: Non Normal Distributions Lecture 6: Non Normal Distributions and their Uses in GARCH Modelling Prof. Massimo Guidolin 20192 Financial Econometrics Spring 2015 Overview Non-normalities in (standardized) residuals from asset return

More information

Financial Risk Forecasting Chapter 5 Implementing Risk Forecasts

Financial Risk Forecasting Chapter 5 Implementing Risk Forecasts Financial Risk Forecasting Chapter 5 Implementing Risk Forecasts Jon Danielsson 2017 London School of Economics To accompany Financial Risk Forecasting www.financialriskforecasting.com Published by Wiley

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

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

Dependence Structure and Extreme Comovements in International Equity and Bond Markets

Dependence Structure and Extreme Comovements in International Equity and Bond Markets Dependence Structure and Extreme Comovements in International Equity and Bond Markets René Garcia Edhec Business School, Université de Montréal, CIRANO and CIREQ Georges Tsafack Suffolk University Measuring

More information

Quantitative Introduction ro Risk and Uncertainty in Business Module 5: Hypothesis Testing Examples

Quantitative Introduction ro Risk and Uncertainty in Business Module 5: Hypothesis Testing Examples Quantitative Introduction ro Risk and Uncertainty in Business Module 5: Hypothesis Testing Examples M. Vidyasagar Cecil & Ida Green Chair The University of Texas at Dallas Email: M.Vidyasagar@utdallas.edu

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

Assicurazioni Generali: An Option Pricing Case with NAGARCH

Assicurazioni Generali: An Option Pricing Case with NAGARCH Assicurazioni Generali: An Option Pricing Case with NAGARCH Assicurazioni Generali: Business Snapshot Find our latest analyses and trade ideas on bsic.it Assicurazioni Generali SpA is an Italy-based insurance

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

Modeling Co-movements and Tail Dependency in the International Stock Market via Copulae

Modeling Co-movements and Tail Dependency in the International Stock Market via Copulae Modeling Co-movements and Tail Dependency in the International Stock Market via Copulae Katja Ignatieva, Eckhard Platen Bachelier Finance Society World Congress 22-26 June 2010, Toronto K. Ignatieva, E.

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

High-Frequency Data Analysis and Market Microstructure [Tsay (2005), chapter 5]

High-Frequency Data Analysis and Market Microstructure [Tsay (2005), chapter 5] 1 High-Frequency Data Analysis and Market Microstructure [Tsay (2005), chapter 5] High-frequency data have some unique characteristics that do not appear in lower frequencies. At this class we have: Nonsynchronous

More information

Volatility Clustering of Fine Wine Prices assuming Different Distributions

Volatility Clustering of Fine Wine Prices assuming Different Distributions Volatility Clustering of Fine Wine Prices assuming Different Distributions Cynthia Royal Tori, PhD Valdosta State University Langdale College of Business 1500 N. Patterson Street, Valdosta, GA USA 31698

More information

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

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

More information

Financial Risk Forecasting Chapter 4 Risk Measures

Financial Risk Forecasting Chapter 4 Risk Measures Financial Risk Forecasting Chapter 4 Risk Measures Jon Danielsson 2017 London School of Economics To accompany Financial Risk Forecasting www.financialriskforecasting.com Published by Wiley 2011 Version

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

Chapter 4 Level of Volatility in the Indian Stock Market

Chapter 4 Level of Volatility in the Indian Stock Market Chapter 4 Level of Volatility in the Indian Stock Market Measurement of volatility is an important issue in financial econometrics. The main reason for the prominent role that volatility plays in financial

More information

Key Words: emerging markets, copulas, tail dependence, Value-at-Risk JEL Classification: C51, C52, C14, G17

Key Words: emerging markets, copulas, tail dependence, Value-at-Risk JEL Classification: C51, C52, C14, G17 RISK MANAGEMENT WITH TAIL COPULAS FOR EMERGING MARKET PORTFOLIOS Svetlana Borovkova Vrije Universiteit Amsterdam Faculty of Economics and Business Administration De Boelelaan 1105, 1081 HV Amsterdam, The

More information

Lecture 5a: ARCH Models

Lecture 5a: ARCH Models Lecture 5a: ARCH Models 1 2 Big Picture 1. We use ARMA model for the conditional mean 2. We use ARCH model for the conditional variance 3. ARMA and ARCH model can be used together to describe both conditional

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

Modelling catastrophic risk in international equity markets: An extreme value approach. JOHN COTTER University College Dublin

Modelling catastrophic risk in international equity markets: An extreme value approach. JOHN COTTER University College Dublin Modelling catastrophic risk in international equity markets: An extreme value approach JOHN COTTER University College Dublin Abstract: This letter uses the Block Maxima Extreme Value approach to quantify

More information

Bivariate Birnbaum-Saunders Distribution

Bivariate Birnbaum-Saunders Distribution Department of Mathematics & Statistics Indian Institute of Technology Kanpur January 2nd. 2013 Outline 1 Collaborators 2 3 Birnbaum-Saunders Distribution: Introduction & Properties 4 5 Outline 1 Collaborators

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

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

An Empirical Analysis of the Dependence Structure of International Equity and Bond Markets Using Regime-switching Copula Model

An Empirical Analysis of the Dependence Structure of International Equity and Bond Markets Using Regime-switching Copula Model An Empirical Analysis of the Dependence Structure of International Equity and Bond Markets Using Regime-switching Copula Model Yuko Otani and Junichi Imai Abstract In this paper, we perform an empirical

More information

EMPIRICAL DISTRIBUTIONS OF STOCK RETURNS: SCANDINAVIAN SECURITIES MARKETS, Felipe Aparicio and Javier Estrada * **

EMPIRICAL DISTRIBUTIONS OF STOCK RETURNS: SCANDINAVIAN SECURITIES MARKETS, Felipe Aparicio and Javier Estrada * ** EMPIRICAL DISTRIBUTIONS OF STOCK RETURNS: SCANDINAVIAN SECURITIES MARKETS, 1990-95 Felipe Aparicio and Javier Estrada * ** Carlos III University (Madrid, Spain) Department of Statistics and Econometrics

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

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

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

Asymmetric Price Transmission: A Copula Approach

Asymmetric Price Transmission: A Copula Approach Asymmetric Price Transmission: A Copula Approach Feng Qiu University of Alberta Barry Goodwin North Carolina State University August, 212 Prepared for the AAEA meeting in Seattle Outline Asymmetric price

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

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

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg :

More information

Fitting financial time series returns distributions: a mixture normality approach

Fitting financial time series returns distributions: a mixture normality approach Fitting financial time series returns distributions: a mixture normality approach Riccardo Bramante and Diego Zappa * Abstract Value at Risk has emerged as a useful tool to risk management. A relevant

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

Analyzing Oil Futures with a Dynamic Nelson-Siegel Model

Analyzing Oil Futures with a Dynamic Nelson-Siegel Model Analyzing Oil Futures with a Dynamic Nelson-Siegel Model NIELS STRANGE HANSEN & ASGER LUNDE DEPARTMENT OF ECONOMICS AND BUSINESS, BUSINESS AND SOCIAL SCIENCES, AARHUS UNIVERSITY AND CENTER FOR RESEARCH

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

Some Characteristics of Data

Some Characteristics of Data Some Characteristics of Data Not all data is the same, and depending on some characteristics of a particular dataset, there are some limitations as to what can and cannot be done with that data. Some key

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

John Hull, Risk Management and Financial Institutions, 4th Edition

John Hull, Risk Management and Financial Institutions, 4th Edition P1.T2. Quantitative Analysis John Hull, Risk Management and Financial Institutions, 4th Edition Bionic Turtle FRM Video Tutorials By David Harper, CFA FRM 1 Chapter 10: Volatility (Learning objectives)

More information

12. Conditional heteroscedastic models (ARCH) MA6622, Ernesto Mordecki, CityU, HK, 2006.

12. Conditional heteroscedastic models (ARCH) MA6622, Ernesto Mordecki, CityU, HK, 2006. 12. Conditional heteroscedastic models (ARCH) MA6622, Ernesto Mordecki, CityU, HK, 2006. References for this Lecture: Robert F. Engle. Autoregressive Conditional Heteroscedasticity with Estimates of Variance

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

Modelling Joint Distribution of Returns. Dr. Sawsan Hilal space

Modelling Joint Distribution of Returns. Dr. Sawsan Hilal space Modelling Joint Distribution of Returns Dr. Sawsan Hilal space Maths Department - University of Bahrain space October 2011 REWARD Asset Allocation Problem PORTFOLIO w 1 w 2 w 3 ASSET 1 ASSET 2 R 1 R 2

More information

Statistics for Business and Economics

Statistics for Business and Economics Statistics for Business and Economics Chapter 5 Continuous Random Variables and Probability Distributions Ch. 5-1 Probability Distributions Probability Distributions Ch. 4 Discrete Continuous Ch. 5 Probability

More information

Operational Risk Aggregation

Operational Risk Aggregation Operational Risk Aggregation Professor Carol Alexander Chair of Risk Management and Director of Research, ISMA Centre, University of Reading, UK. Loss model approaches are currently a focus of operational

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

Comparative Analyses of Expected Shortfall and Value-at-Risk under Market Stress

Comparative Analyses of Expected Shortfall and Value-at-Risk under Market Stress Comparative Analyses of Shortfall and Value-at-Risk under Market Stress Yasuhiro Yamai Bank of Japan Toshinao Yoshiba Bank of Japan ABSTRACT In this paper, we compare Value-at-Risk VaR) and expected shortfall

More information

Cross-Sectional Distribution of GARCH Coefficients across S&P 500 Constituents : Time-Variation over the Period

Cross-Sectional Distribution of GARCH Coefficients across S&P 500 Constituents : Time-Variation over the Period Cahier de recherche/working Paper 13-13 Cross-Sectional Distribution of GARCH Coefficients across S&P 500 Constituents : Time-Variation over the Period 2000-2012 David Ardia Lennart F. Hoogerheide Mai/May

More information

Some Simple Stochastic Models for Analyzing Investment Guarantees p. 1/36

Some Simple Stochastic Models for Analyzing Investment Guarantees p. 1/36 Some Simple Stochastic Models for Analyzing Investment Guarantees Wai-Sum Chan Department of Statistics & Actuarial Science The University of Hong Kong Some Simple Stochastic Models for Analyzing Investment

More information

Amath 546/Econ 589 Univariate GARCH Models

Amath 546/Econ 589 Univariate GARCH Models Amath 546/Econ 589 Univariate GARCH Models Eric Zivot April 24, 2013 Lecture Outline Conditional vs. Unconditional Risk Measures Empirical regularities of asset returns Engle s ARCH model Testing for ARCH

More information

Measuring Risk in Canadian Portfolios: Is There a Better Way?

Measuring Risk in Canadian Portfolios: Is There a Better Way? J.P. Morgan Asset Management (Canada) Measuring Risk in Canadian Portfolios: Is There a Better Way? May 2010 On the Non-Normality of Asset Classes Serial Correlation Fat left tails Converging Correlations

More information

ARCH and GARCH models

ARCH and GARCH models ARCH and GARCH models Fulvio Corsi SNS Pisa 5 Dic 2011 Fulvio Corsi ARCH and () GARCH models SNS Pisa 5 Dic 2011 1 / 21 Asset prices S&P 500 index from 1982 to 2009 1600 1400 1200 1000 800 600 400 200

More information

Occasional Paper. Risk Measurement Illiquidity Distortions. Jiaqi Chen and Michael L. Tindall

Occasional Paper. Risk Measurement Illiquidity Distortions. Jiaqi Chen and Michael L. Tindall DALLASFED Occasional Paper Risk Measurement Illiquidity Distortions Jiaqi Chen and Michael L. Tindall Federal Reserve Bank of Dallas Financial Industry Studies Department Occasional Paper 12-2 December

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

Sampling Distribution

Sampling Distribution MAT 2379 (Spring 2012) Sampling Distribution Definition : Let X 1,..., X n be a collection of random variables. We say that they are identically distributed if they have a common distribution. Definition

More information

Value at Risk with Stable Distributions

Value at Risk with Stable Distributions Value at Risk with Stable Distributions Tecnológico de Monterrey, Guadalajara Ramona Serrano B Introduction The core activity of financial institutions is risk management. Calculate capital reserves given

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

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

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

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

An Information Based Methodology for the Change Point Problem Under the Non-central Skew t Distribution with Applications.

An Information Based Methodology for the Change Point Problem Under the Non-central Skew t Distribution with Applications. An Information Based Methodology for the Change Point Problem Under the Non-central Skew t Distribution with Applications. Joint with Prof. W. Ning & Prof. A. K. Gupta. Department of Mathematics and Statistics

More information

Conditional Heteroscedasticity

Conditional Heteroscedasticity 1 Conditional Heteroscedasticity May 30, 2010 Junhui Qian 1 Introduction ARMA(p,q) models dictate that the conditional mean of a time series depends on past observations of the time series and the past

More information

Econometria dei mercati nanziari c.a. A.A Scopes of Part I. 1.a. Prices and returns of nancial assets: denitions

Econometria dei mercati nanziari c.a. A.A Scopes of Part I. 1.a. Prices and returns of nancial assets: denitions Econometria dei mercati nanziari c.a. A.A. 2015-2016 1. Scopes of Part I 1.a. Prices and returns of nancial assets: denitions 1.b. Three stylized facts about asset returns 1.c. Which (time series) model

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

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

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

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

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

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

Chapter 4 Continuous Random Variables and Probability Distributions

Chapter 4 Continuous Random Variables and Probability Distributions Chapter 4 Continuous Random Variables and Probability Distributions Part 2: More on Continuous Random Variables Section 4.5 Continuous Uniform Distribution Section 4.6 Normal Distribution 1 / 27 Continuous

More information

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

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

More information

A Robust Test for Normality

A Robust Test for Normality A Robust Test for Normality Liangjun Su Guanghua School of Management, Peking University Ye Chen Guanghua School of Management, Peking University Halbert White Department of Economics, UCSD March 11, 2006

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

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

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 Review of previous

More information

2018 AAPM: Normal and non normal distributions: Why understanding distributions are important when designing experiments and analyzing data

2018 AAPM: Normal and non normal distributions: Why understanding distributions are important when designing experiments and analyzing data Statistical Failings that Keep Us All in the Dark Normal and non normal distributions: Why understanding distributions are important when designing experiments and Conflict of Interest Disclosure I have

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

Pricing Multi-asset Equity Options Driven by a Multidimensional Variance Gamma Process Under Nonlinear Dependence Structures

Pricing Multi-asset Equity Options Driven by a Multidimensional Variance Gamma Process Under Nonlinear Dependence Structures Pricing Multi-asset Equity Options Driven by a Multidimensional Variance Gamma Process Under Nonlinear Dependence Structures Komang Dharmawan Department of Mathematics, Udayana University, Indonesia. Orcid:

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

AP STATISTICS FALL SEMESTSER FINAL EXAM STUDY GUIDE

AP STATISTICS FALL SEMESTSER FINAL EXAM STUDY GUIDE AP STATISTICS Name: FALL SEMESTSER FINAL EXAM STUDY GUIDE Period: *Go over Vocabulary Notecards! *This is not a comprehensive review you still should look over your past notes, homework/practice, Quizzes,

More information

A Study of Stock Return Distributions of Leading Indian Bank s

A Study of Stock Return Distributions of Leading Indian Bank s Global Journal of Management and Business Studies. ISSN 2248-9878 Volume 3, Number 3 (2013), pp. 271-276 Research India Publications http://www.ripublication.com/gjmbs.htm A Study of Stock Return Distributions

More information

Loss Simulation Model Testing and Enhancement

Loss Simulation Model Testing and Enhancement Loss Simulation Model Testing and Enhancement Casualty Loss Reserve Seminar By Kailan Shang Sept. 2011 Agenda Research Overview Model Testing Real Data Model Enhancement Further Development Enterprise

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

Operational Risk Modeling

Operational Risk Modeling Operational Risk Modeling RMA Training (part 2) March 213 Presented by Nikolay Hovhannisyan Nikolay_hovhannisyan@mckinsey.com OH - 1 About the Speaker Senior Expert McKinsey & Co Implemented Operational

More information

Dependence Structure between TOURISM and TRANS Sector Indices of the Stock Exchange of Thailand

Dependence Structure between TOURISM and TRANS Sector Indices of the Stock Exchange of Thailand Thai Journal of Mathematics (2014) 199 210 Special Issue on : Copula Mathematics and Econometrics http://thaijmath.in.cmu.ac.th Online ISSN 1686-0209 Dependence Structure between TOURISM and TRANS Sector

More information

Limit Theorems for the Empirical Distribution Function of Scaled Increments of Itô Semimartingales at high frequencies

Limit Theorems for the Empirical Distribution Function of Scaled Increments of Itô Semimartingales at high frequencies Limit Theorems for the Empirical Distribution Function of Scaled Increments of Itô Semimartingales at high frequencies George Tauchen Duke University Viktor Todorov Northwestern University 2013 Motivation

More information

Calamos Phineus Long/Short Fund

Calamos Phineus Long/Short Fund Calamos Phineus Long/Short Fund Performance Update SEPTEMBER 18 FOR INVESTMENT PROFESSIONAL USE ONLY Why Calamos Phineus Long/Short Equity-Like Returns with Superior Risk Profile Over Full Market Cycle

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

Copula Models of Economic Capital for Insurance Companies

Copula Models of Economic Capital for Insurance Companies Copula Models of Economic Capital for Insurance Companies By Jessica Mohr and Thomas Vlasak Advisor: Arkady Shemyakin 1. Summary of Problem Financial and economic variables have proven notoriously difficult

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

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

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

Volatility Analysis of Nepalese Stock Market

Volatility Analysis of Nepalese Stock Market The Journal of Nepalese Business Studies Vol. V No. 1 Dec. 008 Volatility Analysis of Nepalese Stock Market Surya Bahadur G.C. Abstract Modeling and forecasting volatility of capital markets has been important

More information