Financial Risk Forecasting Chapter 3 Multivariate volatility models

Size: px
Start display at page:

Download "Financial Risk Forecasting Chapter 3 Multivariate volatility models"

Transcription

1 Financial Risk Forecasting Chapter 3 Multivariate volatility models Jon Danielsson 2017 London School of Economics To accompany Financial Risk Forecasting Published by Wiley 2011 Version 3.1, November 2017 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 1 of 81

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

3 Volatility The previous chapter focused on the volatility of a single asset In most we hold a portfolio of assets And therefore need to estimate both the volatility of each asset in the portfolio And the correlations between all the assets This means that it is much more complicated to estimate multivariate volatility models than univariate models Financial Risk Forecasting 2011,2017 Jon Danielsson, page 3 of 81

4 The focus of this chapter is on EWMA Orthogonal GARCH CCC and DCC models Estimation comparison Multivariate extensions of GARCH (MV GARCH and BEKK) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 4 of 81

5 Notation Σ t Conditional covariance matrix Y t,k Return on asset k at time t y t,k Sample return on asset k at time t y t = {y t,k } Vector of sample returns on all assets at time t y = {y t } Matrix of sample returns on all assets and dates A and B Matrices of parameters R Correlation matrix D t Conditional variance forecast Financial Risk Forecasting 2011,2017 Jon Danielsson, page 5 of 81

6 Data Amazon and Google daily stock price from date, amzn, goog ,44.52, , , , , , , Financial Risk Forecasting 2011,2017 Jon Danielsson, page 6 of 81

7 Reading data in Matlab data=csvread( amzn goog. csv,1); % the last 1 is to skip first line prices=data (:,2:3); % first column is date y=diff ( log( prices )); % make returns T=length (y); Financial Risk Forecasting 2011,2017 Jon Danielsson, page 7 of 81

8 Matlab estimation It is easy to implement EWMA directly in Matlab For the other models it is generally best to use some library functions The only one I know of is Kevin Sheppard s MFE toolbox Toolbox His documentation lags behind the code and does not mention the multivariate volatility functions But if you download the toolbox you can see his code and each function is documented at the top Financial Risk Forecasting 2011,2017 Jon Danielsson, page 8 of 81

9 Multivariate Volatility Forecasting Financial Risk Forecasting 2011,2017 Jon Danielsson, page 9 of 81

10 Consider the univariate volatility model: Y t = σ t Z t where Y t are returns, σ t is conditional volatility and Z t are random shocks If there are K > 1 assets under consideration, it is necessary to indicate which asset and parameters are being referred to, so the notation becomes more cluttered: Y t,i = σ t,i Z t,i where the first subscript indicates the date and the second subscript the asset Financial Risk Forecasting 2011,2017 Jon Danielsson, page 10 of 81

11 Conditional covariance matrix Σ t The conditional covariance between two assets i and j is indicated by: Cov(Y t,i,y tj ) σ t,ij In the three-asset case (note that σ t,ij = σ t,ji ): σ t,11 Σ t = σ t,12 σ t,22 σ t,13 σ t,23 σ t,33 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 11 of 81

12 Portfolios If w is the vector of portfolio weights The portfolio variance is σ 2 portfolio = w Σw Financial Risk Forecasting 2011,2017 Jon Danielsson, page 12 of 81

13 The curse of dimensionality Number of diagonal elements is K and off diagonal elements K(K 1)/2 so in all K +K(K 1)/2 For two assets it is 2+1, for 3 assets 3+4, for 4 10, etc. The explosion in the number of variance and especially covariance terms, as the number of assets increases, is known as the curse of dimensionality This is one reason why it is more difficult to estimate the covariance matrix Financial Risk Forecasting 2011,2017 Jon Danielsson, page 13 of 81

14 Positive semi-definiteness For univariate volatility we need to ensure that the variance is not negative (σ 2 0) And for a portfolio σ 2 portfolio = w Σw 0 So a covariance matrix should be positive semi-definite: Σ 0 This can be difficult to ensure Financial Risk Forecasting 2011,2017 Jon Danielsson, page 14 of 81

15 What about multivariate (MV) GARCH? For one asset For two σ 2 t+1 = ω +αy2 t +βσ 2 t σ 2 t+1,1 = ω 1 +α 1 y 2 t,1 +β 2σ 2 t,1 +α 2y 2 t,2 +β 2σ 2 t,2 +δ 1σ 2 t+1,1,2 +γ 1y t,1 y t,2 σ 2 t+1,2 = ω 2 +α 3 y 2 t,1 +β 3σ 2 t,1 +α 4y 2 t,2 +β 4σ 2 t,2 +δ 2σ 2 t+1,1,2 +γ 2y t,1 y t,2 σ 2 t+1,1,2 = ω 3 +α 5 y 2 t,1 +β 5σ 2 t,1 +α 6y 2 t,2 +β 6σ 2 t,2 +δ 3σ 2 t+1,1,2 +γ 3y t,1 y t,2 Or 21 parameters to estimate Almost impossible in practice Financial Risk Forecasting 2011,2017 Jon Danielsson, page 15 of 81

16 Numerical issues Stationarity is more important for multivariate volatility For univariate GARCH model, violation of covariance stationarity does not hinder the estimation process with numerical problems A univariate volatility forecast is still obtained even if α+β > 1 This is generally not the case for MV GARCH models A parameter set resulting in violation of covariance stationarity might also lead to unpleasant numerical problems Numerical algorithms need to address these problems, thus complicating the programming process considerably Problems with multiple local minima, flat surfaces and other pathologies discussed in the last chapter Financial Risk Forecasting 2011,2017 Jon Danielsson, page 16 of 81

17 Instead Use some simplification approaches Unfortunately they come with significant trade-offs So MV estimation is much harder and much less accurate than univariate estimation 1. EWMA 2. CCC 3. DCC (perhaps most widely used for portfolios ) 4. OGARCH (perhaps most widely used for combining portfolios) 5. BEKK (not to be recommended except for very small problems, K = 2, perhaps K = 3) 6. MV GARCH (practically impossible except maybe when K = 2) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 17 of 81

18 EWMA Financial Risk Forecasting 2011,2017 Jon Danielsson, page 18 of 81

19 Univariate: A vector of returns is EWMA model The multivariate EWMA is: ˆσ 2 t = λˆσ2 t 1 +(1 λ)y2 t 1 y t = [y t,1,y t,2,...,y t,k ] K 1 ˆΣ t = λˆσ t 1 +(1 λ)y t 1 y t 1 with an individual element given by: ˆσ t,ij = λˆσ t 1,ij +(1 λ)y t 1,i y t 1,j Financial Risk Forecasting 2011,2017 Jon Danielsson, page 19 of 81

20 Properties The same weight, λ, is used for all assets It is pre-specified and not estimated The variance of any particular asset only depends on its own lags Financial Risk Forecasting 2011,2017 Jon Danielsson, page 20 of 81

21 Pros and cons of multivariate EWMA model Usefulness: Straightforward implementation, even for a large number of assets Covariance matrix is guaranteed to be positive semi-definite Financial Risk Forecasting 2011,2017 Jon Danielsson, page 21 of 81

22 Pros and cons of multivariate EWMA model Usefulness: Straightforward implementation, even for a large number of assets Covariance matrix is guaranteed to be positive semi-definite Drawbacks: Restrictiveness: Simple structure The assumption of a single and usually non-estimated λ Financial Risk Forecasting 2011,2017 Jon Danielsson, page 22 of 81

23 Matlab estimation Can use the MFE library riskmetrics (y,lambda) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 23 of 81

24 EWMA = nan(t,3); % create a matrix to hold the covariance matrix lambda = 0.94 S = cov(y) % initial (t=1) covariance matrix Financial Risk Forecasting 2011,2017 Jon Danielsson, page 24 of 81

25 Be careful with the matrix multiplications, getting the transposes right for i = 2:T % loop though the sample S = lambda S + (1 lambda) y(i,:) y(i,:); EWMA(i,:) = S([1,4,2]); % convert matrix to vector end EWMArho = EWMA(:,3)./ sqrt (EWMA(:,1). EWMA(:,2)) % calculate correlations % note the matrix multiplication. Financial Risk Forecasting 2011,2017 Jon Danielsson, page 25 of 81

26 Constant Conditional Correlation Models Financial Risk Forecasting 2011,2017 Jon Danielsson, page 26 of 81

27 Steps De-mean returns Separate out correlation modelling from volatility modelling 1. correlation matrix 2. variances Model volatilities with GARCH or some standard method The correlation matrix can be static (CCC) or dynamic (DCC) Financial Risk Forecasting 2011,2017 Jon Danielsson, page 27 of 81

28 Definitions Let D t be a diagonal matrix where each element is the volatility of each asset D t,ii = σ t,i, i = 1,...,K D t,ij = 0, i j Use univariate GARCH (or some method) to estimate the variance of each asset separately, i.e. to get D t D t,ii = σ t,i = ω i +α i yt 1,i 2 +β iσt 1,i 2, i = 1,...,K Financial Risk Forecasting 2011,2017 Jon Danielsson, page 28 of 81

29 We want the correlations of the residuals ǫ t,i := y t,i D t,i ǫ t := Dt 1 y t K 1 And Then the correlations are ǫ T K ˆR := Cov(ǫ) = ǫǫ t T Financial Risk Forecasting 2011,2017 Jon Danielsson, page 29 of 81

30 Constant conditional correlations (CCC) Then combine these two ˆΣ t = ˆD t ˆR ˆDt Note that while D is time dependent, R is not Financial Risk Forecasting 2011,2017 Jon Danielsson, page 30 of 81

31 Pros and cons Pros Guarantees the positive definiteness of ˆΣ t if ˆR is positive definite Simple model, easy to implement Since matrix ˆD t has only diagonal elements, we can estimate each volatility separately Financial Risk Forecasting 2011,2017 Jon Danielsson, page 31 of 81

32 Pros and cons Pros Guarantees the positive definiteness of ˆΣ t if ˆR is positive definite Simple model, easy to implement Since matrix ˆD t has only diagonal elements, we can estimate each volatility separately Cons The assumption of correlations being constant over time is at odds with the vast amount of empirical evidence supporting nonlinear dependence Financial Risk Forecasting 2011,2017 Jon Danielsson, page 32 of 81

33 Dynamic Conditional Correlation Models Financial Risk Forecasting 2011,2017 Jon Danielsson, page 33 of 81

34 Dynamic conditional correlations (DCC) DCC model is an extension of the the CCC Let the correlation matrix ˆR t be time dependent While one might propose a model like R t = a+bǫ t 1 ǫ t 1 +cr t 1 That will not work since we have to ensure Σ t > 0, i.e. positive definite. For that: D t is positive definite by construction since all elements in D t are positive All elements in R t need to be 1 and 1 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 34 of 81

35 So need more steps Decompose R t into R t = Q t Q tq t Q t is a positive definite matrix that dives the dynamics Qt re-scales Q t to ensure each element q t,ij < 1 1/ q t, / q t,22 0 Q t = / q t,kk Financial Risk Forecasting 2011,2017 Jon Danielsson, page 35 of 81

36 The have Q t follow an ARMA type process Q t = (1 ζ ξ)q +ζǫ t 1 ǫ t 1 +ξq t 1 Q is the (K K) unconditional covariance matrix of ǫ ζ and ξ are parameters Parameter restrictions: Positive definiteness ζ,ξ > 0 Stationarity ζ +ξ < 1 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 36 of 81

37 Pros and cons of DCC Pros Large covariance matrices can be easily be estimated Financial Risk Forecasting 2011,2017 Jon Danielsson, page 37 of 81

38 Pros and cons of DCC Pros Large covariance matrices can be easily be estimated Cons Parameters ζ and ξ are constants So the conditional correlations of all assets are driven by the same underlying dynamics, parameters are same for all assets Financial Risk Forecasting 2011,2017 Jon Danielsson, page 38 of 81

39 Matlab estimation in 2 asset case [p, lik, Ht] = dcc(y,1,1,1,1) Ht = reshape (Ht,4,T) ; % because Ht comes as a time vector of one % period matrixes % so need to convert those % into a T by 4 matrix DCCrho = Ht(:,3)./ sqrt(ht(:,1). Ht(:,4)); Financial Risk Forecasting 2011,2017 Jon Danielsson, page 39 of 81

40 Orthogonal GARCH Financial Risk Forecasting 2011,2017 Jon Danielsson, page 40 of 81

41 Large problems Even a medium-sized financial institutions will have hundreds of thousands or millions of types of assets what is known as risk factors Estimating the covariance matrix for the entire institution is effectively impossible using methods like EWMA or DCC Instead, we can split the risk factors up into subcomponents Estimate the covariance of each And then combine them back Financial Risk Forecasting 2011,2017 Jon Danielsson, page 41 of 81

42 For example Bonds Bank US China Commodities S&P 100 Index Equities S&P 400 Mid Cap Index Bonds Equities Brazil Bonds Equities Financial Risk Forecasting 2011,2017 Jon Danielsson, page 42 of 81

43 The orthogonal approach transforms the observed returns matrix into a set of portfolios with the key property that they are uncorrelated We can forecast their volatilities separately Principal components analysis (PCA) Known as orthogonal GARCH, or OGARCH Because it involves transforming correlated returns into uncorrelated portfolios and then using GARCH to forecast the volatilities of each uncorrelated portfolio separately Financial Risk Forecasting 2011,2017 Jon Danielsson, page 43 of 81

44 Idea We have a matrix of returns With covariance matrix Let Then the correlations are Y T K Σ K K D = diagσ R = D 1 ΣD 1 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 44 of 81

45 Orthogonalizing covariance Making covariance uncorrelated Transform the return matrix Y into uncorrelated portfolios U Calculate the K K matrix of eigenvectors of R Denote the matrix Λ U is defined as: U = Λ Y Financial Risk Forecasting 2011,2017 Jon Danielsson, page 45 of 81

46 Large-scale implementations Large number of assets The method also allows estimates for volatilities and correlations of variables to be generated even when data are sparse (e.g., in illiquid markets) The use of PCA guarantees the positive definiteness of the covariance matrix PCA also facilitates building a covariance matrix for an entire financial institution by iteratively combining the covariance matrices of the various trading desks, simply by using one or perhaps two PCs Financial Risk Forecasting 2011,2017 Jon Danielsson, page 46 of 81

47 Consider an example... Your financial institution has the following securities: Financial Risk Forecasting 2011,2017 Jon Danielsson, page 47 of 81

48 Consider an example... Your financial institution has the following securities: σ 2 E Financial Risk Forecasting 2011,2017 Jon Danielsson, page 48 of 81

49 Consider an example... Your financial institution has the following securities: σe 2 σb 2 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 49 of 81

50 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E Financial Risk Forecasting 2011,2017 Jon Danielsson, page 50 of 81

51 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B Financial Risk Forecasting 2011,2017 Jon Danielsson, page 51 of 81

52 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Financial Risk Forecasting 2011,2017 Jon Danielsson, page 52 of 81

53 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: Financial Risk Forecasting 2011,2017 Jon Danielsson, page 53 of 81

54 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E Financial Risk Forecasting 2011,2017 Jon Danielsson, page 54 of 81

55 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E σ 2 B Financial Risk Forecasting 2011,2017 Jon Danielsson, page 55 of 81

56 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E ρ E,B σ 2 B Financial Risk Forecasting 2011,2017 Jon Danielsson, page 56 of 81

57 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E ρ E,B σ 2 B σ 2 E Financial Risk Forecasting 2011,2017 Jon Danielsson, page 57 of 81

58 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E ρ E,B σ 2 B ρ E,E ρ B,E σ 2 E Financial Risk Forecasting 2011,2017 Jon Danielsson, page 58 of 81

59 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E ρ E,B σ 2 B ρ E,E ρ B,E σ 2 E σ 2 B Financial Risk Forecasting 2011,2017 Jon Danielsson, page 59 of 81

60 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E ρ E,B σ 2 B ρ E,E ρ B,E σ 2 E ρ B,B ρ E,B σ 2 B Financial Risk Forecasting 2011,2017 Jon Danielsson, page 60 of 81

61 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E ρ E,B σ 2 B ρ E,E ρ B,E σ 2 E ρ B,B ρ E,B σ 2 B Financial Risk Forecasting 2011,2017 Jon Danielsson, page 61 of 81

62 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E ρ E,B σ 2 B ρ E,E ρ B,E σ 2 E ρ B,B ρ E,B σ 2 B Financial Risk Forecasting 2011,2017 Jon Danielsson, page 62 of 81

63 Consider an example... Your financial institution has the following securities: σ 2 E σ 2 B σ 2 E σ 2 B where red is UK, blue is Germany, E denotes EQUITY and B is BOND Individual covariance matrices of your securities can be combined into a covariance matrix for the entire financial institution: σ 2 E ρ E,B σ 2 B ρ E,E ρ B,E σ 2 E ρ B,B ρ E,B σ 2 B Financial Risk Forecasting 2011,2017 Jon Danielsson, page 63 of 81

64 Matlab estimation [par, Ht] = o mvgarch(y,2, 1,1,1); Ht = reshape (Ht,4,T) ; OOrho = Ht(:,3)./ sqrt(ht(:,1). Ht(:,4)); Financial Risk Forecasting 2011,2017 Jon Danielsson, page 64 of 81

65 Estimation Comparison Financial Risk Forecasting 2011,2017 Jon Danielsson, page 65 of 81

66 Prices 200 MSFT 180 IBM Financial Risk Forecasting 2011,2017 Jon Danielsson, page 66 of 81

67 (b) Returns 15 % MSFT 10 % 5 % 0 % 5 % 10 % 15 % 10 % 5 % 0 % 5 % 10 % 15 % IBM Financial Risk Forecasting 2011,2017 Jon Danielsson, page 67 of 81

68 Correlation estimates with average correlation 49% 80% 60% 40% 20% 0% 20% EWMA Financial Risk Forecasting 2011,2017 Jon Danielsson, page 68 of 81

69 Correlation estimates with average correlation 49% 80% 60% 40% 20% 0% 20% EWMA DCC Financial Risk Forecasting 2011,2017 Jon Danielsson, page 69 of 81

70 Let s focus on 2008, the midst of the crisis, when the correlations of all stocks increased dramatically... Financial Risk Forecasting 2011,2017 Jon Danielsson, page 70 of 81

71 Prices 100 MSFT IBM Jan Mar May Jul Sep Nov Jan Financial Risk Forecasting 2011,2017 Jon Danielsson, page 71 of 81

72 Returns 15 % MSFT 10 % 5 % 0 % 5 % 10 % Jan Mar May Jul Sep Nov Jan 15 % IBM 10 % 5 % 0 % 5 % 10 % Jan Mar May Jul Sep Nov Jan Financial Risk Forecasting 2011,2017 Jon Danielsson, page 72 of 81

73 Correlations with average correlation 49% 80% 60% 40% 20% EWMA Jan Mar May Jul Sep Nov Jan Financial Risk Forecasting 2011,2017 Jon Danielsson, page 73 of 81

74 Correlations with average correlation 49% 80% 60% 40% 20% EWMA DCC Jan Mar May Jul Sep Nov Jan Financial Risk Forecasting 2011,2017 Jon Danielsson, page 74 of 81

75 BEKK Financial Risk Forecasting 2011,2017 Jon Danielsson, page 75 of 81

76 The BEKK model An alternative to the MV-GARCH models The matrix of conditional covariances is Σ t A function of the outer product of lagged returns and lagged conditional covariances Each pre-multiplied and post-multiplied by a parameter matrix Results in a quadratic function that is guaranteed to be positive semi-definite Financial Risk Forecasting 2011,2017 Jon Danielsson, page 76 of 81

77 The two-asset, one-lag BEKK(1,1,2) model is defined as: Σ t = ΩΩ +A Y t 1 Y t 1A+B Σ t 1 B or: ( ) ( )( σt,11 σ Σ t = t,12 ω11 0 ω11 0 = σ t,12 σ t,22 ω 21 ω 22 ω 21 ω 22 ( ) ( α11 α + 12 α 21 α 22 ( β11 β + 12 β 21 β 22 Y 2 t 1,1 Y t 1,2 Y t 1,1 Yt 1,2 2 ) ( σt 1,11 σ t 1,12 σ t 1,12 σ t 1,22 ) )( ) Y t 1,1 Y t 1,2 α11 α 12 α 21 α 22 )( ) β11 β 12 β 21 β 22 Financial Risk Forecasting 2011,2017 Jon Danielsson, page 77 of 81

78 The general BEKK(L 1,L 2,K) model is given by: Σ t = ΩΩ + + K L 1 A i,ky t iy t i A i,k k=1 i=1 K L 2 B j,kσ t j B j,k k=1 j=1 The number of parameters in the BEKK(1,1,2) model is K(5K +1)/2 11 in two asset case 24 in three asset case 42 in four asset case Financial Risk Forecasting 2011,2017 Jon Danielsson, page 78 of 81

79 Pros and cons Pros Allows for interactions between different asset returns and volatilities Relatively parsimonious Financial Risk Forecasting 2011,2017 Jon Danielsson, page 79 of 81

80 Pros and cons Pros Allows for interactions between different asset returns and volatilities Relatively parsimonious Cons Parameters hard to interpret Many parameters are often found to be statistically insignificant, which suggests the model may be overparametrized Can only handle a small number of assets Financial Risk Forecasting 2011,2017 Jon Danielsson, page 80 of 81

81 Matlab estimation [PARAMETERS,LL,HT]=bekk(y,[],1,0,1); This took 33 seconds on my laptop Financial Risk Forecasting 2011,2017 Jon Danielsson, page 81 of 81

Course information FN3142 Quantitative finance

Course information FN3142 Quantitative finance Course information 015 16 FN314 Quantitative finance This course is aimed at students interested in obtaining a thorough grounding in market finance and related empirical methods. Prerequisite If taken

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

Lecture Note 9 of Bus 41914, Spring Multivariate Volatility Models ChicagoBooth

Lecture Note 9 of Bus 41914, Spring Multivariate Volatility Models ChicagoBooth Lecture Note 9 of Bus 41914, Spring 2017. Multivariate Volatility Models ChicagoBooth Reference: Chapter 7 of the textbook Estimation: use the MTS package with commands: EWMAvol, marchtest, BEKK11, dccpre,

More information

Discussion Paper No. DP 07/05

Discussion Paper No. DP 07/05 SCHOOL OF ACCOUNTING, FINANCE AND MANAGEMENT Essex Finance Centre A Stochastic Variance Factor Model for Large Datasets and an Application to S&P data A. Cipollini University of Essex G. Kapetanios Queen

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

A Primer on the Orthogonal GARCH Model

A Primer on the Orthogonal GARCH Model 1 A Primer on the Orthogonal GARCH Model Professor Carol Alexander ISMA Centre, The Business School for Financial Markets, University of Reading Keywords: Principal component analysis, covariance matrix,

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

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

Financial Econometrics Lecture 5: Modelling Volatility and Correlation

Financial Econometrics Lecture 5: Modelling Volatility and Correlation Financial Econometrics Lecture 5: Modelling Volatility and Correlation Dayong Zhang Research Institute of Economics and Management Autumn, 2011 Learning Outcomes Discuss the special features of financial

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

THE CHINESE UNIVERSITY OF HONG KONG Department of Mathematics MMAT5250 Financial Mathematics Homework 2 Due Date: March 24, 2018

THE CHINESE UNIVERSITY OF HONG KONG Department of Mathematics MMAT5250 Financial Mathematics Homework 2 Due Date: March 24, 2018 THE CHINESE UNIVERSITY OF HONG KONG Department of Mathematics MMAT5250 Financial Mathematics Homework 2 Due Date: March 24, 2018 Name: Student ID.: I declare that the assignment here submitted is original

More information

Effects of Outliers and Parameter Uncertainties in Portfolio Selection

Effects of Outliers and Parameter Uncertainties in Portfolio Selection Effects of Outliers and Parameter Uncertainties in Portfolio Selection Luiz Hotta 1 Carlos Trucíos 2 Esther Ruiz 3 1 Department of Statistics, University of Campinas. 2 EESP-FGV (postdoctoral). 3 Department

More information

Models Multivariate GARCH Models Updated: April

Models Multivariate GARCH Models Updated: April Financial i Econometrics and Volatility Models Multivariate GARCH Models Updated: April 21. 2010 Eric Zivot Professor and Gary Waterman Distinguished Scholar Department of Economics, University of Washington

More information

Introduction to Risk Management

Introduction to Risk Management Introduction to Risk Management ACPM Certified Portfolio Management Program c 2010 by Martin Haugh Introduction to Risk Management We introduce some of the basic concepts and techniques of risk management

More information

Generalized Dynamic Factor Models and Volatilities: Recovering the Market Volatility Shocks

Generalized Dynamic Factor Models and Volatilities: Recovering the Market Volatility Shocks Generalized Dynamic Factor Models and Volatilities: Recovering the Market Volatility Shocks Paper by: Matteo Barigozzi and Marc Hallin Discussion by: Ross Askanazi March 27, 2015 Paper by: Matteo Barigozzi

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

Market risk measurement in practice

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

More information

Implied Volatility Correlations

Implied Volatility Correlations Implied Volatility Correlations Robert Engle, Stephen Figlewski and Amrut Nashikkar Date: May 18, 2007 Derivatives Research Conference, NYU IMPLIED VOLATILITY Implied volatilities from market traded options

More information

9.1 Principal Component Analysis for Portfolios

9.1 Principal Component Analysis for Portfolios Chapter 9 Alpha Trading By the name of the strategies, an alpha trading strategy is to select and trade portfolios so the alpha is maximized. Two important mathematical objects are factor analysis and

More information

Lecture 3: Factor models in modern portfolio choice

Lecture 3: Factor models in modern portfolio choice Lecture 3: Factor models in modern portfolio choice Prof. Massimo Guidolin Portfolio Management Spring 2016 Overview The inputs of portfolio problems Using the single index model Multi-index models Portfolio

More information

IMPA Commodities Course : Forward Price Models

IMPA Commodities Course : Forward Price Models IMPA Commodities Course : Forward Price Models Sebastian Jaimungal sebastian.jaimungal@utoronto.ca Department of Statistics and Mathematical Finance Program, University of Toronto, Toronto, Canada http://www.utstat.utoronto.ca/sjaimung

More information

Optimal weights for the MSCI North America index. Optimal weights for the MSCI Europe index

Optimal weights for the MSCI North America index. Optimal weights for the MSCI Europe index Portfolio construction with Bayesian GARCH forecasts Wolfgang Polasek and Momtchil Pojarliev Institute of Statistics and Econometrics University of Basel Holbeinstrasse 12 CH-4051 Basel email: Momtchil.Pojarliev@unibas.ch

More information

2.1 Mathematical Basis: Risk-Neutral Pricing

2.1 Mathematical Basis: Risk-Neutral Pricing Chapter Monte-Carlo Simulation.1 Mathematical Basis: Risk-Neutral Pricing Suppose that F T is the payoff at T for a European-type derivative f. Then the price at times t before T is given by f t = e r(t

More information

Portfolio construction by volatility forecasts: Does the covariance structure matter?

Portfolio construction by volatility forecasts: Does the covariance structure matter? Portfolio construction by volatility forecasts: Does the covariance structure matter? Momtchil Pojarliev and Wolfgang Polasek INVESCO Asset Management, Bleichstrasse 60-62, D-60313 Frankfurt email: momtchil

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

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

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

Chapter 6 Forecasting Volatility using Stochastic Volatility Model

Chapter 6 Forecasting Volatility using Stochastic Volatility Model Chapter 6 Forecasting Volatility using Stochastic Volatility Model Chapter 6 Forecasting Volatility using SV Model In this chapter, the empirical performance of GARCH(1,1), GARCH-KF and SV models from

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

Extend the ideas of Kan and Zhou paper on Optimal Portfolio Construction under parameter uncertainty

Extend the ideas of Kan and Zhou paper on Optimal Portfolio Construction under parameter uncertainty Extend the ideas of Kan and Zhou paper on Optimal Portfolio Construction under parameter uncertainty George Photiou Lincoln College University of Oxford A dissertation submitted in partial fulfilment for

More information

The University of Sydney School of Mathematics and Statistics. Computer Project

The University of Sydney School of Mathematics and Statistics. Computer Project The University of Sydney School of Mathematics and Statistics Computer Project MATH2070/2970: Optimisation and Financial Mathematics Semester 2, 2018 Web Page: http://www.maths.usyd.edu.au/u/im/math2070/

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

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

User Guide of GARCH-MIDAS and DCC-MIDAS MATLAB Programs

User Guide of GARCH-MIDAS and DCC-MIDAS MATLAB Programs User Guide of GARCH-MIDAS and DCC-MIDAS MATLAB Programs 1. Introduction The GARCH-MIDAS model decomposes the conditional variance into the short-run and long-run components. The former is a mean-reverting

More information

Risk Management and Time Series

Risk Management and Time Series IEOR E4602: Quantitative Risk Management Spring 2016 c 2016 by Martin Haugh Risk Management and Time Series Time series models are often employed in risk management applications. They can be used to estimate

More information

Estimating Bivariate GARCH-Jump Model Based on High Frequency Data : the case of revaluation of Chinese Yuan in July 2005

Estimating Bivariate GARCH-Jump Model Based on High Frequency Data : the case of revaluation of Chinese Yuan in July 2005 Estimating Bivariate GARCH-Jump Model Based on High Frequency Data : the case of revaluation of Chinese Yuan in July 2005 Xinhong Lu, Koichi Maekawa, Ken-ichi Kawai July 2006 Abstract This paper attempts

More information

A multivariate analysis of the UK house price volatility

A multivariate analysis of the UK house price volatility A multivariate analysis of the UK house price volatility Kyriaki Begiazi 1 and Paraskevi Katsiampa 2 Abstract: Since the recent financial crisis there has been heightened interest in studying the volatility

More information

Volatility Models and Their Applications

Volatility Models and Their Applications HANDBOOK OF Volatility Models and Their Applications Edited by Luc BAUWENS CHRISTIAN HAFNER SEBASTIEN LAURENT WILEY A John Wiley & Sons, Inc., Publication PREFACE CONTRIBUTORS XVII XIX [JQ VOLATILITY MODELS

More information

Factor Analysis for Volatility - Part II

Factor Analysis for Volatility - Part II Factor Analysis for Volatility - Part II Ross Askanazi and Jacob Warren September 4, 2015 Ross Askanazi and Jacob Warren Factor Analysis for Volatility - Part II September 4, 2015 1 / 17 Review - Intro

More information

Multivariate time series models for asset prices

Multivariate time series models for asset prices Multivariate time series models for asset prices Christian M. Hafner 1 and Hans Manner 2 1 Institut de statistique and CORE, Université catholique de Louvain, Voie du Roman Pays 20, B-1348 Louvain-la-Neuve,

More information

Robust Portfolio Optimization Using a Simple Factor Model

Robust Portfolio Optimization Using a Simple Factor Model Robust Portfolio Optimization Using a Simple Factor Model Chris Bemis, Xueying Hu, Weihua Lin, Somayes Moazeni, Li Wang, Ting Wang, Jingyan Zhang Abstract In this paper we examine the performance of a

More information

Lecture Note of Bus 41202, Spring 2008: More Volatility Models. Mr. Ruey Tsay

Lecture Note of Bus 41202, Spring 2008: More Volatility Models. Mr. Ruey Tsay Lecture Note of Bus 41202, Spring 2008: More Volatility Models. Mr. Ruey Tsay The EGARCH model Asymmetry in responses to + & returns: g(ɛ t ) = θɛ t + γ[ ɛ t E( ɛ t )], with E[g(ɛ t )] = 0. To see asymmetry

More information

Implementing the HJM model by Monte Carlo Simulation

Implementing the HJM model by Monte Carlo Simulation Implementing the HJM model by Monte Carlo Simulation A CQF Project - 2010 June Cohort Bob Flagg Email: bob@calcworks.net January 14, 2011 Abstract We discuss an implementation of the Heath-Jarrow-Morton

More information

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

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

More information

Quantitative Risk Management

Quantitative Risk Management Quantitative Risk Management Asset Allocation and Risk Management Martin B. Haugh Department of Industrial Engineering and Operations Research Columbia University Outline Review of Mean-Variance Analysis

More information

Forecasting Conditional Correlation for Exchange Rates using Multivariate GARCH models with Historical Value-at-Risk application

Forecasting Conditional Correlation for Exchange Rates using Multivariate GARCH models with Historical Value-at-Risk application Forecasting Conditional Correlation for Exchange Rates using Multivariate GARCH models with Historical Value-at-Risk application Joel Hartman Department of Economics & Jan Sedlak Department of Statistics

More information

Empirical Analysis of the US Swap Curve Gough, O., Juneja, J.A., Nowman, K.B. and Van Dellen, S.

Empirical Analysis of the US Swap Curve Gough, O., Juneja, J.A., Nowman, K.B. and Van Dellen, S. WestminsterResearch http://www.westminster.ac.uk/westminsterresearch Empirical Analysis of the US Swap Curve Gough, O., Juneja, J.A., Nowman, K.B. and Van Dellen, S. This is a copy of the final version

More information

An empirical study in risk management: estimation of Value at Risk with GARCH family models

An empirical study in risk management: estimation of Value at Risk with GARCH family models An empirical study in risk management: estimation of Value at Risk with GARCH family models Author: Askar Nyssanov Supervisor: Anders Ågren, Professor Master Thesis in Statistics Department of Statistics

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

Econophysics V: Credit Risk

Econophysics V: Credit Risk Fakultät für Physik Econophysics V: Credit Risk Thomas Guhr XXVIII Heidelberg Physics Graduate Days, Heidelberg 2012 Outline Introduction What is credit risk? Structural model and loss distribution Numerical

More information

Order Making Fiscal Year 2018 Annual Adjustments to Transaction Fee Rates

Order Making Fiscal Year 2018 Annual Adjustments to Transaction Fee Rates This document is scheduled to be published in the Federal Register on 04/20/2018 and available online at https://federalregister.gov/d/2018-08339, and on FDsys.gov 8011-01p SECURITIES AND EXCHANGE COMMISSION

More information

Return Decomposition over the Business Cycle

Return Decomposition over the Business Cycle Return Decomposition over the Business Cycle Tolga Cenesizoglu March 1, 2016 Cenesizoglu Return Decomposition & the Business Cycle March 1, 2016 1 / 54 Introduction Stock prices depend on investors expectations

More information

A Dynamic Model of Expected Bond Returns: a Functional Gradient Descent Approach.

A Dynamic Model of Expected Bond Returns: a Functional Gradient Descent Approach. A Dynamic Model of Expected Bond Returns: a Functional Gradient Descent Approach. Francesco Audrino Giovanni Barone-Adesi January 2006 Abstract We propose a multivariate methodology based on Functional

More information

The Effects of Monetary Policy on Asset Price Bubbles: Some Evidence

The Effects of Monetary Policy on Asset Price Bubbles: Some Evidence The Effects of Monetary Policy on Asset Price Bubbles: Some Evidence Jordi Galí Luca Gambetti September 2013 Jordi Galí, Luca Gambetti () Monetary Policy and Bubbles September 2013 1 / 17 Monetary Policy

More information

Market Risk Analysis Volume II. Practical Financial Econometrics

Market Risk Analysis Volume II. Practical Financial Econometrics Market Risk Analysis Volume II Practical Financial Econometrics Carol Alexander John Wiley & Sons, Ltd List of Figures List of Tables List of Examples Foreword Preface to Volume II xiii xvii xx xxii xxvi

More information

Multi-Asset Risk Models

Multi-Asset Risk Models Portfolio & Risk Analytics Research Multi-Asset Risk Models Overcoming the Curse of Dimensionality Jose Menchero Head of Portfolio Analytics Research jmenchero@bloomberg.net Outline Motivation The curse

More information

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

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

More information

Dynamic Replication of Non-Maturing Assets and Liabilities

Dynamic Replication of Non-Maturing Assets and Liabilities Dynamic Replication of Non-Maturing Assets and Liabilities Michael Schürle Institute for Operations Research and Computational Finance, University of St. Gallen, Bodanstr. 6, CH-9000 St. Gallen, Switzerland

More information

Hitotsubashi ICS-FS Working Paper Series. A method for risk parity/budgeting portfolio based on Gram-Schmidt orthonormalization

Hitotsubashi ICS-FS Working Paper Series. A method for risk parity/budgeting portfolio based on Gram-Schmidt orthonormalization Hitotsubashi ICS-FS Working Paper Series FS-2017-E-003 A method for risk parity/budgeting portfolio based on Gram-Schmidt orthonormalization Kensuke Kamauchi Daisuke Yokouchi The Graduate School of International

More information

Simultaneous Hedging of Regulatory and Accounting CVA

Simultaneous Hedging of Regulatory and Accounting CVA Simultaneous Hedging of Regulatory and Accounting CVA Christoph Berns Abstract As a consequence of the recent financial crisis, Basel III introduced a new capital charge, the CVA risk charge to cover the

More information

An empirical study of the dynamic correlation of Japanese stock returns

An empirical study of the dynamic correlation of Japanese stock returns Bank of Japan Working Paper Series An empirical study of the dynamic correlation of Japanese stock returns Takashi Isogai * takashi.isogai@boj.or.jp No.15-E-7 July 2015 Bank of Japan 2-1-1 Nihonbashi-Hongokucho,

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

A Dynamic Model of Expected Bond Returns: a Functional Gradient Descent Approach

A Dynamic Model of Expected Bond Returns: a Functional Gradient Descent Approach A Dynamic Model of Expected Bond Returns: a Functional Gradient Descent Approach Francesco Audrino Giovanni Barone-Adesi Institute of Finance, University of Lugano, Via Buffi 13, 6900 Lugano, Switzerland

More information

1 Explicit Euler Scheme (or Euler Forward Scheme )

1 Explicit Euler Scheme (or Euler Forward Scheme ) Numerical methods for PDE in Finance - M2MO - Paris Diderot American options January 2017 Files: https://ljll.math.upmc.fr/bokanowski/enseignement/2016/m2mo/m2mo.html We look for a numerical approximation

More information

IDENTIFYING BROAD AND NARROW FINANCIAL RISK FACTORS VIA CONVEX OPTIMIZATION: PART I

IDENTIFYING BROAD AND NARROW FINANCIAL RISK FACTORS VIA CONVEX OPTIMIZATION: PART I 1 IDENTIFYING BROAD AND NARROW FINANCIAL RISK FACTORS VIA CONVEX OPTIMIZATION: PART I Lisa Goldberg lrg@berkeley.edu MMDS Workshop. June 22, 2016. joint with Alex Shkolnik and Jeff Bohn. Identifying Broad

More information

Mathematics in Finance

Mathematics in Finance Mathematics in Finance Steven E. Shreve Department of Mathematical Sciences Carnegie Mellon University Pittsburgh, PA 15213 USA shreve@andrew.cmu.edu A Talk in the Series Probability in Science and Industry

More information

2. Copula Methods Background

2. Copula Methods Background 1. Introduction Stock futures markets provide a channel for stock holders potentially transfer risks. Effectiveness of such a hedging strategy relies heavily on the accuracy of hedge ratio estimation.

More information

IDENTIFYING BROAD AND NARROW FINANCIAL RISK FACTORS VIA CONVEX OPTIMIZATION: PART II

IDENTIFYING BROAD AND NARROW FINANCIAL RISK FACTORS VIA CONVEX OPTIMIZATION: PART II 1 IDENTIFYING BROAD AND NARROW FINANCIAL RISK FACTORS VIA CONVEX OPTIMIZATION: PART II Alexander D. Shkolnik ads2@berkeley.edu MMDS Workshop. June 22, 2016. joint with Jeffrey Bohn and Lisa Goldberg. Identifying

More information

Discussion The Changing Relationship Between Commodity Prices and Prices of Other Assets with Global Market Integration by Barbara Rossi

Discussion The Changing Relationship Between Commodity Prices and Prices of Other Assets with Global Market Integration by Barbara Rossi Discussion The Changing Relationship Between Commodity Prices and Prices of Other Assets with Global Market Integration by Barbara Rossi Domenico Giannone Université libre de Bruxelles, ECARES and CEPR

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

Financial Time Series Lecture 10: Analysis of Multiple Financial Time Series with Applications

Financial Time Series Lecture 10: Analysis of Multiple Financial Time Series with Applications Financial Time Series Lecture 10: Analysis of Multiple Financial Time Series with Applications Reference: Chapters 8 and 10 of the textbook. We shall focus on two series (i.e., the bivariate case) Time

More information

Stochastic Volatility (SV) Models

Stochastic Volatility (SV) Models 1 Motivations Stochastic Volatility (SV) Models Jun Yu Some stylised facts about financial asset return distributions: 1. Distribution is leptokurtic 2. Volatility clustering 3. Volatility responds to

More information

1 Explicit Euler Scheme (or Euler Forward Scheme )

1 Explicit Euler Scheme (or Euler Forward Scheme ) Numerical methods for PDE in Finance - M2MO - Paris Diderot American options January 2018 Files: https://ljll.math.upmc.fr/bokanowski/enseignement/2017/m2mo/m2mo.html We look for a numerical approximation

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

Extended Libor Models and Their Calibration

Extended Libor Models and Their Calibration Extended Libor Models and Their Calibration Denis Belomestny Weierstraß Institute Berlin Vienna, 16 November 2007 Denis Belomestny (WIAS) Extended Libor Models and Their Calibration Vienna, 16 November

More information

A Macroeconomic Framework for Quantifying Systemic Risk

A Macroeconomic Framework for Quantifying Systemic Risk A Macroeconomic Framework for Quantifying Systemic Risk Zhiguo He, University of Chicago and NBER Arvind Krishnamurthy, Stanford University and NBER Bank of Canada, August 2017 He and Krishnamurthy (Chicago,

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

Keywords: Price volatility, GARCH, copula, dynamic conditional correlation. JEL Classification: C32, R31, R33

Keywords: Price volatility, GARCH, copula, dynamic conditional correlation. JEL Classification: C32, R31, R33 Modelling Price Volatility in the Hong Kong Property Market Sherry Z. Zhou and Helen X. H. Bao * Department of Management Sciences, City University of Hong Kong, Hong Kong. Department of Land Economy,

More information

Lattice (Binomial Trees) Version 1.2

Lattice (Binomial Trees) Version 1.2 Lattice (Binomial Trees) Version 1. 1 Introduction This plug-in implements different binomial trees approximations for pricing contingent claims and allows Fairmat to use some of the most popular binomial

More information

Optimal Portfolio Inputs: Various Methods

Optimal Portfolio Inputs: Various Methods Optimal Portfolio Inputs: Various Methods Prepared by Kevin Pei for The Fund @ Sprott Abstract: In this document, I will model and back test our portfolio with various proposed models. It goes without

More information

Chapter 14. The Multi-Underlying Black-Scholes Model and Correlation

Chapter 14. The Multi-Underlying Black-Scholes Model and Correlation Chapter 4 The Multi-Underlying Black-Scholes Model and Correlation So far we have discussed single asset options, the payoff function depended only on one underlying. Now we want to allow multiple underlyings.

More information

Accurate Short-Term Yield Curve Forecasting using Functional Gradient Descent

Accurate Short-Term Yield Curve Forecasting using Functional Gradient Descent Accurate Short-Term Yield Curve Forecasting using Functional Gradient Descent Francesco Audrino a,b, and Fabio Trojani b, a Institute of Finance, University of Lugano, Switzerland b Department of Economics,

More information

Optimally Thresholded Realized Power Variations for Lévy Jump Diffusion Models

Optimally Thresholded Realized Power Variations for Lévy Jump Diffusion Models Optimally Thresholded Realized Power Variations for Lévy Jump Diffusion Models José E. Figueroa-López 1 1 Department of Statistics Purdue University University of Missouri-Kansas City Department of Mathematics

More information

Optimal construction of a fund of funds

Optimal construction of a fund of funds Optimal construction of a fund of funds Petri Hilli, Matti Koivu and Teemu Pennanen January 28, 29 Introduction We study the problem of diversifying a given initial capital over a finite number of investment

More information

Cross-Section Performance Reversion

Cross-Section Performance Reversion Cross-Section Performance Reversion Maxime Rivet, Marc Thibault and Maël Tréan Stanford University, ICME mrivet, marcthib, mtrean at stanford.edu Abstract This article presents a way to use cross-section

More information

Financial Risk Forecasting Chapter 1 Financial markets, prices and risk

Financial Risk Forecasting Chapter 1 Financial markets, prices and risk Financial Risk Forecasting Chapter 1 Financial markets, prices and risk Jon Danielsson 2017 London School of Economics To accompany Financial Risk Forecasting www.financialriskforecasting.com Published

More information

Capital requirements and portfolio optimization under solvency constraints: a dynamical approach

Capital requirements and portfolio optimization under solvency constraints: a dynamical approach Capital requirements and portfolio optimization under solvency constraints: a dynamical approach S. Asanga 1, A. Asimit 2, A. Badescu 1 S. Haberman 2 1 Department of Mathematics and Statistics, University

More information

Macroeconometric Modeling: 2018

Macroeconometric Modeling: 2018 Macroeconometric Modeling: 2018 Contents Ray C. Fair 2018 1 Macroeconomic Methodology 4 1.1 The Cowles Commission Approach................. 4 1.2 Macroeconomic Methodology.................... 5 1.3 The

More information

A Decision Rule to Minimize Daily Capital Charges in Forecasting Value-at-Risk*

A Decision Rule to Minimize Daily Capital Charges in Forecasting Value-at-Risk* A Decision Rule to Minimize Daily Capital Charges in Forecasting Value-at-Risk* Michael McAleer Department of Quantitative Economics Complutense University of Madrid and Econometric Institute Erasmus University

More information

Correlated Volatility Shocks

Correlated Volatility Shocks Correlated Volatility Shocks Xiao Qiao,a and Yongning Wang,b a SummerHaven Investment Management, LLC b Booth School of Business, University of Chicago January 10, 2017 Abstract Commonality in idiosyncratic

More information

Choice Models. Session 1. K. Sudhir Yale School of Management. Spring

Choice Models. Session 1. K. Sudhir Yale School of Management. Spring Choice Models Session 1 K. Sudhir Yale School of Management Spring 2-2011 Outline The Basics Logit Properties Model setup Matlab Code Heterogeneity State dependence Endogeneity Model Setup Bayesian Learning

More information

Estimation of VaR Using Copula and Extreme Value Theory

Estimation of VaR Using Copula and Extreme Value Theory 1 Estimation of VaR Using Copula and Extreme Value Theory L. K. Hotta State University of Campinas, Brazil E. C. Lucas ESAMC, Brazil H. P. Palaro State University of Campinas, Brazil and Cass Business

More information

V Time Varying Covariance and Correlation. Covariances and Correlations

V Time Varying Covariance and Correlation. Covariances and Correlations V Time Varying Covariance and Correlation DEFINITION OF CORRELATIONS ARE THEY TIME VARYING? WHY DO WE NEED THEM? ONE FACTOR ARCH MODEL DYNAMIC CONDITIONAL CORRELATIONS ASSET ALLOCATION THE VALUE OF CORRELATION

More information

Log-Normal Approximation of the Equity Premium in the Production Model

Log-Normal Approximation of the Equity Premium in the Production Model Log-Normal Approximation of the Equity Premium in the Production Model Burkhard Heer Alfred Maussner CESIFO WORKING PAPER NO. 3311 CATEGORY 12: EMPIRICAL AND THEORETICAL METHODS DECEMBER 2010 An electronic

More information

Volatility Spillovers and Causality of Carbon Emissions, Oil and Coal Spot and Futures for the EU and USA

Volatility Spillovers and Causality of Carbon Emissions, Oil and Coal Spot and Futures for the EU and USA 22nd International Congress on Modelling and Simulation, Hobart, Tasmania, Australia, 3 to 8 December 2017 mssanz.org.au/modsim2017 Volatility Spillovers and Causality of Carbon Emissions, Oil and Coal

More information

Chapter 5 Univariate time-series analysis. () Chapter 5 Univariate time-series analysis 1 / 29

Chapter 5 Univariate time-series analysis. () Chapter 5 Univariate time-series analysis 1 / 29 Chapter 5 Univariate time-series analysis () Chapter 5 Univariate time-series analysis 1 / 29 Time-Series Time-series is a sequence fx 1, x 2,..., x T g or fx t g, t = 1,..., T, where t is an index denoting

More information

Vladimir Spokoiny (joint with J.Polzehl) Varying coefficient GARCH versus local constant volatility modeling.

Vladimir Spokoiny (joint with J.Polzehl) Varying coefficient GARCH versus local constant volatility modeling. W e ie rstra ß -In stitu t fü r A n g e w a n d te A n a ly sis u n d S to c h a stik STATDEP 2005 Vladimir Spokoiny (joint with J.Polzehl) Varying coefficient GARCH versus local constant volatility modeling.

More information

Comovements and Volatility Spillover in Commodity Markets

Comovements and Volatility Spillover in Commodity Markets Comovements and Volatility Spillover in Commodity Markets Sihong Chen Department of Agricultural Economics Texas A&M University shchen@tamu.edu Ximing Wu Department of Agricultural Economics Texas A&M

More information

A Closed-form Solution for Outperfomance Options with Stochastic Correlation and Stochastic Volatility

A Closed-form Solution for Outperfomance Options with Stochastic Correlation and Stochastic Volatility A Closed-form Solution for Outperfomance Options with Stochastic Correlation and Stochastic Volatility Jacinto Marabel Romo Email: jacinto.marabel@grupobbva.com November 2011 Abstract This article introduces

More information

FE670 Algorithmic Trading Strategies. Stevens Institute of Technology

FE670 Algorithmic Trading Strategies. Stevens Institute of Technology FE670 Algorithmic Trading Strategies Lecture 4. Cross-Sectional Models and Trading Strategies Steve Yang Stevens Institute of Technology 09/26/2013 Outline 1 Cross-Sectional Methods for Evaluation of Factor

More information