Statistical Analysis of Financial Data

Size: px
Start display at page:

Download "Statistical Analysis of Financial Data"

Transcription

1 ETH Zürich, WBL Angewandte Statistik 2019 Blockkurs Statistical Analysis of Financial Data Lecture 4 Prof. Dr. Andreas Ruckstuhl Dozent für Statistische Datenanalyse Institut für Datenanalyse und Prozess Design IDP Zürcher Hochschule für Angewandte Wissenschaften ZHAW andreas.ruckstuhl@zhaw.ch 28. Januar 2019 A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 1

2 Outline of Lecture 4 Lecture 1: Financial Data and Their Properties Lecture 2: Model for Conditional Heteroskedasticity and Risk Measures Lecture 3: Statistical Issues When Applying Portfolio Theory Lecture 4: (Financial) Factor Models The market model Macroeconomic Factor Models Fundamental Factor Model & Example with R Cross-Sectional Fundamental Factor Model Principal Components and Factor Analysis * Factor Models in Return-Based Style Analysis * Our 17 Factor Model Lecture 5: Copulas A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 2

3 7 (Financial) Factor Models Financial factor analysis explains returns with a small number of fundamental variables called factors or risk factor. A factor model for equity returns (or excess equity returns R j,t - μ f,t ) is R j,t = o,j + 1,j F 1,t + + p,j F p,t + j,t where R j,t is either the return or the excess return on the jth asset at time t, μ f,t is the risk free rate at time t F 1,t,..., F p,t are variables, called factors or risk factors, that represent the state of the financial markets and world economy at time t. 1,t,, n,t are uncorrelated, mean-zero r.v. called the unique risks of the individual stocks Uncorrelated means that all cross-correlation between the returns is due to the factors! The factors are common to all returns j=1,,n k,j is called factor loading and specifies the sensitivity of the j th asset return to the k th factor Introduction of some types of factor models: A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 3

4 7.1 The market model: The root of factor models The market model R j,t μ f,t = j + j (R m,t μ f,t ) + j,t, where a simple market index R m,t is a proxy for the entire (non-observable) market portfolio. This model is based on the Capital Asset Pricing Model (CAPM) (*), where j would be 0. CAPM is an economic equilibrium model (ex ante, i.e., predictive) whereas the market model is ex post (i.e., explanatory). In CAPM, the market risk factor is the only source of risk besides the unique risk of each asset. Hence, it is the sole source of correlation between any two asset returns Test whether CAPM is valid: Test the hypothesis j =0 in an ex post (!) setting (If is nonzero then the security (=Wertpapier) is mispriced, at least according to CAPM) (*) CAPM was introduced by Jack Treynor, William Sharpe, John Lintner and Jan Mossin independently in the sixties, building on the earlier work of Harry Markowitz. Sharpe, Markowitz and Merton Miller jointly received the Nobel Memorial Prize in Economics for this contribution to the field of financial economics. The market model is a single factor model and there is fairly strong empirical evidence that one factor is not sufficient. A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 4

5 7.2 Macroeconomic Factor Models Macroeconomic factor models use macroeconomic variables such as Return on the market portfolio Growth rate of the GDP Interest rate on short term Treasury bills or changes in this rate Inflation rate or changes in this rate Interest rate spreads; e.g., difference between long-term Treasury bonds and long-term corporate bonds Base: The efficient market hypothesis (another piece of theory in finance) implies that stock prices change because of new information; i.e., stock returns will be influenced by unpredictable changes in macroeconomic variables. The factors in a macroeconomic model are not the macroeconomic variables themselves, but rather the residuals when changes in the macroeconomic variables are predicted by a times series model, such as, multivariate AR models The R 2 -values of such fits are often very low hence such types of factor models are not used widely in practise. A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 5

6 7.3 Fundamental Factor Model Fundamental factor models use observable asset characteristics such as Return on portfolio of stocks; e.g., all CH stocks, SMI, KMU,... The difference between returns on two portfolios Example: Fama & French Three-Factor Model ( ) The three factors are Excess return of the market portfolio (from the market model / CAPM) Small minus big (SMB): Difference in returns on a portfolio of small stocks and a portfolio of large stocks (size refer to the size of the market value) Hight minus low (HML): Difference in returns of a portfolio of high book ( ) -to-market value (BE/ME) stocks and a portfolio of low BE/ME stocks ( ) Fama & French (1993, 1995, 1996), Univ. of Chicago 2013, Eugene Fama shared the Nobel Memorial Prize in Economics jointly with Robert Shiller and Lars Peter Hansen ( ) Book value is the net worth of a firm according to its accounting balance sheet A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 6

7 Example: Fama & French Three-Factor Model applied to monthly returns on three equities GE, IBM and Mobil (Jan 1969 to Dec 1998) Calculate excess returns; e.g., GEf = GE R F > pairs(ffs1) Left: Scatterplot matrix of the variables used in this example Focusing on GEf, GEf is highly correlated with the excess market returns GEf is negatively related with the factor HML GEf behaves as a value stock??!! A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 7

8 Fitting by Time Series Regression > (FFS.fit <- lm(cbind(gef,ibmf,mobilf) ~ Mkt.RF + SMB + HML, data=ffs1)) Coefficients: GEf IBMf Mobilf (Intercept) Mkt.RF SMB HML Note that GEf now has a positive relationship with HML All three equity returns have negative relationship to SMB; i.e., they behave like large stock as they are suppose to do A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 8

9 Are the residuals uncorrelated as we assume in the factor model? > cor(ffs1.fit$residuals) GEf IBMf Mobilf GEf IBMf Mobilf > pairs(ffs1.fit$residuals, las=1) The correlation between GEf and Mobilf is rather far from zero > cor.test(ffs1.fit$residuals[,1], FFS1.fit$residuals[,3]) t= , df=358, p-value=1.044e-06 There are a few outliers robust estimation? (covrobust()from R package rrcov) A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 9

10 Use a time-series factor model to estimate the covariance matrix R : Use factor model R t = β 0 + β T F t +, where β β and t 0, t are unkown The covariance matrix of R t is R = β T F β +, (*) where is a diagonal matrix. F is estimated by the sample covariance of the factors > (h1 <- cov(ffs1[,c("mkt.rf","smb","hml")])) Mkt.RF SMB HML Mkt.RF SMB HML The estimate of β is the matrix of regression coefficients (without intercepts) > (h2 <- coef(ffs1.fit)[-1,]) GEf IBMf Mobilf Mkt.RF SMB HML A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 10

11 The estimate of is the diagonal matrix of residuals variances > n <- nrow(ffs1) >(h3 <- diag(diag((n-1)/(n-4)* cov(resid(ffs1.fit))))) [,1] [,2] [,3] [1,] [2,] [3,] Note: Devide by (n-4) because we estimated 4 parameters in the factor model Hence, the estimation of β T F β + is > t(h2) %*% h1 %*% h2 + h3 GEf IBMf Mobilf GEf IBMf Mobilf For comparison: the sample covariance matrix R is > cov(ffs1[,c("gef","ibmf","mobilf")]) GEf IBMf Mobilf GEf IBMf Mobilf Largest difference is in the covariance between GEf and Mobilf. Reason: factor model assumes a zero residual correlation, but the data show a correlation of (cf. Slide 9) Note the different usage of regression calculus here compared to that in a standard regression course. A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 11

12 7.4 Cross-Sectional Fundamental Factor Model Time series factor model do not make use of variables such as dividend yields, book-to-market value, or other variables specific to the kth firm. An alternative is a cross-sectional factor model, which is a regression model using data from many assets but from only a single holding period. Example: Suppose that R k, (B/M) and D k k are the return, book-to-market value and dividend yield for the k the asset at some fixed time t cross-sectional factor model is R k = (B/M) k + 2 D k + ε k The parameter 0, 1 and 2 are unknown values (at each time point t) Hence, in contrast to time series factor models 1 and 2, which are unknown, depend on time they play the role of factors The variables (B/M) k and D k are directly measured they play the role of loadings A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 12

13 7.5 Statistical Factor Analysis Let R t be a vector of returns from d assets. Let s assume that p latent factors F t, called risk factors, explain the returns up to additive constants and some errors: where is a p x d matrix of unknown loadings is the d dimensional vector of additive constants is the d dimensional vector of unexplained returns (= error ). (*) A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 13

14 Example: Allocate capital to the equity markets of ten different countries In R: > (R.fa <- factanal(r, factors=3, rotation="none")) Uniquenesses: HongKong Singapore Brazil Argentina UK Germany Canada France Japan USA Loadings: Factor1 Factor2 Factor3 HongKong Singapore Brazil Argentina UK Germany Canada France Japan USA Factor1 Factor2 Factor3 SS loadings Proportion Var Cumulative Var Estimates of β T Test of the hypothesis that 3 factors are sufficient. The chi square statistic is 13.9 on 18 degrees of freedom. The p-value is Estimates of the diagonal of Test whether «approximation is okay» A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 14

15 Comments on the factor loadings Cutoff is 0.1; i.e. absolute values smaller than 0.1 are indicated by a blank Factor1: Because all its loadings have the same sign, the first factor is an overall index of the 10 countries Factor2: The second factor has negative loadings on Germany and France (the continental European countries), is neutral to UK, Canada and Japan, and has positive loadings on all other countries. Hence it contrasts the continental European countries with the positive group of countries. A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 15

16 Remarks: NOTE! Since factanal standardizes the variables, β T β + approximates the correlation matrix of R t Let D be the diagonal matrix with the standard deviation of each asset on its diagonal. Then D (β T β + ε ) D approximates the covariance matrix R of R t The latent factors F t are used to model the correlation between the assets factanal would allow to rotate the β which, however, would not change F = β T β. Hence, we leave it. Estimation of R 65 parameters are estimated (=10 (location) + 10 (variances)+10*9/2 (covariances)) Estimation by approximation: 53 (minus constraints) parameters are estimated (= 10 (add. Constant) + 3 (loadings) + 3*10 (Factors) + 10 (diagonal of )) A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 16

17 Example: Allocate capital to the equity markets of ten different countries Bootstrapping the estimated Sharpe s ratio of the tangency portfolio using the factor analysis approximation (B=250) In R: > EM.TPboot <- BootTP(Dat=100*R, mufree=1/24, nboot=250, NoFAC=3) > boxplot(em.tpboot[,1:2], las=1, ylab="sharpe's ratio") > abline(h=em.sol$tpsharpe, lty=2, lwd=2, col="gray") - «3 factor approx» is as good as sample cov - «1 factor approx» is slightly worse, and would not pass the test on slide 6 as well A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 17

18 Comment on Principal Component Analysis (PCA): PCA aims to find low-dimensional subspaces containing most of the variation in the data That is, the remaining components will not contain a lot of variation... but may still contain correlation between the assets Hence, PCA cannot be used as a factor model in finance But still as an exploratory tool to gain insights into the return data as does a scatterplot matrix In R: > pairs(r) # see next slide A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 18

19 Scatterplot matrix A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 19

20 7.6* Factor Models in Return-Based Style Analysis In return-based style analysis, the factors are returns on representative asset classes, which are usually assimilated to market indices. Sharpe (1988, 1992) Example: Fund of hedge-funds (FoHF) - A less transparent financial instrument Many FoHF will only disclose partial information on their underlying portfolio. The style of FoHF and their underlying investment strategy, which is the crucial characterization of FoHF, is self-declared Return-based style analysis is an instrument to provide a unprejudiced insight into FoHF. Lhabitant (2001) introduced the idea: Use a multifactor model, where the factors are indices of hedge-fund sub-styles This is a very different use of a factor model than in the previous Sections: Not the risk is of its explicit focus but rather the composition (=factors) A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 20

21 Example from the block Robust Regression Hedge-Fund Sub-Indices of Different Providers (CSFB/T, HFR, EDHEC) CSFB/T: Credit Suisse First Boston / Tremont, nowadays Credit Suisse Hedge Fund Index ( HFR : Hedge Fund Research ( EDEC : EDEC-Risk Institute ( A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 21

22 Residuals using robust fitting methods ( lmrob in robustbase): FoHF A FoHF B residuals residuals homogeneous shift in the investment strategy? A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 22

23 Constraints on the β s From an economic perspective, it may seem natural and logical to add constraints on the β s: The β s should not be negative since the short selling strategy is captured by a sub-index FoHF only hold long positions of single hedge funds hence we do not allow short sales on any sub-index The β s should add up to 1 (100%) if the FoHF is invested in hedge funds solely and in reality? If the constraints are enforced in the fitting process a standard residual analysis may not be sensible standard regression inference results cannot be applied A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 23

24 Constraints on the β s example using the FoHF dataset > round(coef(lm(fohf ~. -1, data=fohf, subset=-(1:28))),2) RV CA FIA EMN ED EDD EDRA LSE GM EM SS > require(quadprog) > X2 <- data.matrix(fohf[-(1:28),-1]) > Y2 <- FoHF$FoHF[-(1:28)] > Dmat2 <- crossprod(x2) > dvec2 <- as.vector(t(as.matrix(y2)) %*% X2) > bvec <- c(1, rep(0, p)) > Amat <- rbind(c(rep(1, p)), diag(p)) > sol2 <- solve.qp(dmat=dmat2, dvec=dvec2, Amat=t(Amat), bvec=bvec, meq=1) > names(sol2$solution) <- colnames(x2) > round(sol2$solution,2) RV CA FIA EMN ED EDD EDRA LSE GM EM SS > sum(sol2$solution) [1] 1 A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 24

25 But a HoHF may not be invested in HF completely (i.e, sum(β s) < 1) or may be leveraged (i.e, sum(β s) > 1). LASSO (least absolute shrinkage and selection operator) is a regression analysis method that performs both variable selection and regularization in order to enhance the prediction accuracy and interpretability of the statistical model it produces. Example: creinvest AG, May 2000 until December 2005 (b=sum(β s)) CSFB/T (b = 0.91 ) creinvest EDHEC (b = 0.95 ) HFR (b = 1 ) MF SS CA FIA MF SS RV CA FIA SS RV CA FIA EM EMN EM EMN EM EMN GM ED GM ED GM ED LSE EDRA EDD LSE EDRA EDD LSE EDRA EDD The result are different because the index providers use different data bases and different weighting schemes to calculate the sub-indices. A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 25

26 7.7* Our 17 Factor Model Our extension of Fama & French Three-Factor Model resulted in a 17-Factor Model which is based on 9 factors which should cover the classical investment market. They are actual market indices and 8 factors which should cover the alternative investment market. They are derived from actual market indices Manz, Meier, Ruckstuhl, Stoz, and Weibel, The New 17-Factor Model, Research Report ZHAW, January, 2012 A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 26

27 Does an actively managed fund (like Fund of Hedge Fund - FoHF) pay off its higher fee? Separate the contribution of the market (=loadings) from that of a single Fund of Hedge Fund (FoHF) manager (=intercept) to the returns since a single FoHF does not need to be invested in every sector, the FoHF may be adequately described just through some of the market factors. Since we are calibrating the factor model for the last 48 months, sometimes more than half of the factors are not statistically significant. This calls for variable selection (i.e., so-called "hard thresholding") Our focus in calibrating the factor model lies in the parameters (especially in the intercept) and its behaviour over time. The least-squares fit and the selection of the factors did not yield stable results due to too many parameters and too short adjustment period, respectively. Way out: A gradual selection of factors based on so-called "'soft thresholding"' methods - Our choice fell on L2 Boosting A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 27

28 L2 Boosting in our context means: Instead of directly solving the least-squares problem an iterative gradient descent procedure is used Instead of fully iterating, the procedure is stopped earlier A single iteration step consists of fitting the best single regression model (with one of the factors) to the residuals of the updated boosted estimator of the previous step cf., i.e., Bühlmann and Hothorn (2007). Boosting algorithms: Regularization, prediction and model fitting (with discussion). Statistical Science 22, Example: RMF Equity Hedged Strategies (a FoHF) Intercept (=alpha) over time (Jan 2004 to Dec 2008) of a FoHF. The boxplots shows the variability of the alpha estimation over the FoHF universe on hedgegate. Philipp, Ruckstuhl, Manz, Dettling, Dürr and Meier (2009). Performance Rating of Funds of Hedge Funds, Research Report ZHAW A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 28

29 Take Home Message Lecture 4 Financial factor analysis explains returns with a small number of fundamental variables called factors or risk factor Factor models are used to construct estimators for the covariance matrix ( portfolio optimization) Identify return and risk sources, i.e., Perform style analysis of a portfolio Separating the contribution of the market (=loadings) from that of an active manager If the factors are investable, then you can mimic a less transparent financial instrument by a portfolio of better known instruments Factor models are fitted by Time series regression methods (LS, robust, constrained LS, LASSO, gradient boosting, ) Cross-sectional regression methods (LS, robust, ) Statistical factor analysis A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 29

30 ᄃ Lecture 4 in the books: Chapter 18 Subsec 4.2.1, Chapter 18 Sections marked by * are not examined A. Ruckstuhl -- WBL 2019, Lecture 4 of SAoFD -- Page 30

STYLE EXPOSURE AND LEVERAGE OF FUNDS OF HEDGE FUNDS WITH A VARIABLE FACTOR MODEL *)

STYLE EXPOSURE AND LEVERAGE OF FUNDS OF HEDGE FUNDS WITH A VARIABLE FACTOR MODEL *) STYLE EXPOSURE AND LEVERAGE OF FUNDS OF HEDGE FUNDS WITH A VARIABLE FACTOR MODEL ) Andreas Ruckstuhl (andreas.ruckstuhl@zhaw.ch) Institute of Data Analysis and Process Design Zurich University of Applied

More information

Common Macro Factors and Their Effects on U.S Stock Returns

Common Macro Factors and Their Effects on U.S Stock Returns 2011 Common Macro Factors and Their Effects on U.S Stock Returns IBRAHIM CAN HALLAC 6/22/2011 Title: Common Macro Factors and Their Effects on U.S Stock Returns Name : Ibrahim Can Hallac ANR: 374842 Date

More information

Applied Macro Finance

Applied Macro Finance Master in Money and Finance Goethe University Frankfurt Week 2: Factor models and the cross-section of stock returns Fall 2012/2013 Please note the disclaimer on the last page Announcements Next week (30

More information

Statistical Understanding. of the Fama-French Factor model. Chua Yan Ru

Statistical Understanding. of the Fama-French Factor model. Chua Yan Ru i Statistical Understanding of the Fama-French Factor model Chua Yan Ru NATIONAL UNIVERSITY OF SINGAPORE 2012 ii Statistical Understanding of the Fama-French Factor model Chua Yan Ru (B.Sc National University

More information

Improving Returns-Based Style Analysis

Improving Returns-Based Style Analysis Improving Returns-Based Style Analysis Autumn, 2007 Daniel Mostovoy Northfield Information Services Daniel@northinfo.com Main Points For Today Over the past 15 years, Returns-Based Style Analysis become

More information

ECON FINANCIAL ECONOMICS

ECON FINANCIAL ECONOMICS ECON 337901 FINANCIAL ECONOMICS Peter Ireland Boston College Fall 2017 These lecture notes by Peter Ireland are licensed under a Creative Commons Attribution-NonCommerical-ShareAlike 4.0 International

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

ECON FINANCIAL ECONOMICS

ECON FINANCIAL ECONOMICS ECON 337901 FINANCIAL ECONOMICS Peter Ireland Boston College Spring 2018 These lecture notes by Peter Ireland are licensed under a Creative Commons Attribution-NonCommerical-ShareAlike 4.0 International

More information

An Analysis of Theories on Stock Returns

An Analysis of Theories on Stock Returns An Analysis of Theories on Stock Returns Ahmet Sekreter 1 1 Faculty of Administrative Sciences and Economics, Ishik University, Erbil, Iraq Correspondence: Ahmet Sekreter, Ishik University, Erbil, Iraq.

More information

CHAPTER 10. Arbitrage Pricing Theory and Multifactor Models of Risk and Return INVESTMENTS BODIE, KANE, MARCUS

CHAPTER 10. Arbitrage Pricing Theory and Multifactor Models of Risk and Return INVESTMENTS BODIE, KANE, MARCUS CHAPTER 10 Arbitrage Pricing Theory and Multifactor Models of Risk and Return McGraw-Hill/Irwin Copyright 2011 by The McGraw-Hill Companies, Inc. All rights reserved. 10-2 Single Factor Model Returns on

More information

CHAPTER 10. Arbitrage Pricing Theory and Multifactor Models of Risk and Return INVESTMENTS BODIE, KANE, MARCUS

CHAPTER 10. Arbitrage Pricing Theory and Multifactor Models of Risk and Return INVESTMENTS BODIE, KANE, MARCUS CHAPTER 10 Arbitrage Pricing Theory and Multifactor Models of Risk and Return INVESTMENTS BODIE, KANE, MARCUS McGraw-Hill/Irwin Copyright 2011 by The McGraw-Hill Companies, Inc. All rights reserved. INVESTMENTS

More information

Final Exam Suggested Solutions

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

More information

Predictability of Stock Returns

Predictability of Stock Returns Predictability of Stock Returns Ahmet Sekreter 1 1 Faculty of Administrative Sciences and Economics, Ishik University, Iraq Correspondence: Ahmet Sekreter, Ishik University, Iraq. Email: ahmet.sekreter@ishik.edu.iq

More information

Note on Cost of Capital

Note on Cost of Capital DUKE UNIVERSITY, FUQUA SCHOOL OF BUSINESS ACCOUNTG 512F: FUNDAMENTALS OF FINANCIAL ANALYSIS Note on Cost of Capital For the course, you should concentrate on the CAPM and the weighted average cost of capital.

More information

Answer FOUR questions out of the following FIVE. Each question carries 25 Marks.

Answer FOUR questions out of the following FIVE. Each question carries 25 Marks. UNIVERSITY OF EAST ANGLIA School of Economics Main Series PGT Examination 2017-18 FINANCIAL MARKETS ECO-7012A Time allowed: 2 hours Answer FOUR questions out of the following FIVE. Each question carries

More information

Markowitz portfolio theory

Markowitz portfolio theory Markowitz portfolio theory Farhad Amu, Marcus Millegård February 9, 2009 1 Introduction Optimizing a portfolio is a major area in nance. The objective is to maximize the yield and simultaneously minimize

More information

Decimalization and Illiquidity Premiums: An Extended Analysis

Decimalization and Illiquidity Premiums: An Extended Analysis Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 5-2015 Decimalization and Illiquidity Premiums: An Extended Analysis Seth E. Williams Utah State University

More information

Introduction to Algorithmic Trading Strategies Lecture 9

Introduction to Algorithmic Trading Strategies Lecture 9 Introduction to Algorithmic Trading Strategies Lecture 9 Quantitative Equity Portfolio Management Haksun Li haksun.li@numericalmethod.com www.numericalmethod.com Outline Alpha Factor Models References

More information

Overview of Concepts and Notation

Overview of Concepts and Notation Overview of Concepts and Notation (BUSFIN 4221: Investments) - Fall 2016 1 Main Concepts This section provides a list of questions you should be able to answer. The main concepts you need to know are embedded

More information

Foundations of Finance

Foundations of Finance Lecture 5: CAPM. I. Reading II. Market Portfolio. III. CAPM World: Assumptions. IV. Portfolio Choice in a CAPM World. V. Individual Assets in a CAPM World. VI. Intuition for the SML (E[R p ] depending

More information

Alternative Risk Premia: What Do We know? 1

Alternative Risk Premia: What Do We know? 1 Alternative Risk Premia: What Do We know? 1 Thierry Roncalli and Ban Zheng Lyxor Asset Management 2, France Lyxor Conference Paris, May 23, 2016 1 The materials used in these slides are taken from Hamdan

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

Common Factors in Return Seasonalities

Common Factors in Return Seasonalities Common Factors in Return Seasonalities Matti Keloharju, Aalto University Juhani Linnainmaa, University of Chicago and NBER Peter Nyberg, Aalto University AQR Insight Award Presentation 1 / 36 Common factors

More information

Microéconomie de la finance

Microéconomie de la finance Microéconomie de la finance 7 e édition Christophe Boucher christophe.boucher@univ-lorraine.fr 1 Chapitre 6 7 e édition Les modèles d évaluation d actifs 2 Introduction The Single-Index Model - Simplifying

More information

LECTURE NOTES 3 ARIEL M. VIALE

LECTURE NOTES 3 ARIEL M. VIALE LECTURE NOTES 3 ARIEL M VIALE I Markowitz-Tobin Mean-Variance Portfolio Analysis Assumption Mean-Variance preferences Markowitz 95 Quadratic utility function E [ w b w ] { = E [ w] b V ar w + E [ w] }

More information

Index Models and APT

Index Models and APT Index Models and APT (Text reference: Chapter 8) Index models Parameter estimation Multifactor models Arbitrage Single factor APT Multifactor APT Index models predate CAPM, originally proposed as a simplification

More information

Modeling Portfolios that Contain Risky Assets Risk and Reward II: Markowitz Portfolios

Modeling Portfolios that Contain Risky Assets Risk and Reward II: Markowitz Portfolios Modeling Portfolios that Contain Risky Assets Risk and Reward II: Markowitz Portfolios C. David Levermore University of Maryland, College Park Math 420: Mathematical Modeling February 4, 2013 version c

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

An analysis of momentum and contrarian strategies using an optimal orthogonal portfolio approach

An analysis of momentum and contrarian strategies using an optimal orthogonal portfolio approach An analysis of momentum and contrarian strategies using an optimal orthogonal portfolio approach Hossein Asgharian and Björn Hansson Department of Economics, Lund University Box 7082 S-22007 Lund, Sweden

More information

Risk-Based Investing & Asset Management Final Examination

Risk-Based Investing & Asset Management Final Examination Risk-Based Investing & Asset Management Final Examination Thierry Roncalli February 6 th 2015 Contents 1 Risk-based portfolios 2 2 Regularizing portfolio optimization 3 3 Smart beta 5 4 Factor investing

More information

Modelling Stock Returns in India: Fama and French Revisited

Modelling Stock Returns in India: Fama and French Revisited Volume 9 Issue 7, Jan. 2017 Modelling Stock Returns in India: Fama and French Revisited Rajeev Kumar Upadhyay Assistant Professor Department of Commerce Sri Aurobindo College (Evening) Delhi University

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

Betting Against Beta

Betting Against Beta Betting Against Beta Andrea Frazzini AQR Capital Management LLC Lasse H. Pedersen NYU, CEPR, and NBER Copyright 2010 by Andrea Frazzini and Lasse H. Pedersen The views and opinions expressed herein are

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

Using Pitman Closeness to Compare Stock Return Models

Using Pitman Closeness to Compare Stock Return Models International Journal of Business and Social Science Vol. 5, No. 9(1); August 2014 Using Pitman Closeness to Compare Stock Return s Victoria Javine Department of Economics, Finance, & Legal Studies University

More information

University of California Berkeley

University of California Berkeley University of California Berkeley A Comment on The Cross-Section of Volatility and Expected Returns : The Statistical Significance of FVIX is Driven by a Single Outlier Robert M. Anderson Stephen W. Bianchi

More information

Can you do better than cap-weighted equity benchmarks?

Can you do better than cap-weighted equity benchmarks? R/Finance 2011 Can you do better than cap-weighted equity benchmarks? Guy Yollin Principal Consultant, r-programming.org Visiting Lecturer, University of Washington Krishna Kumar Financial Consultant Yollin/Kumar

More information

Internet Appendix to Leverage Constraints and Asset Prices: Insights from Mutual Fund Risk Taking

Internet Appendix to Leverage Constraints and Asset Prices: Insights from Mutual Fund Risk Taking Internet Appendix to Leverage Constraints and Asset Prices: Insights from Mutual Fund Risk Taking In this Internet Appendix, we provide further discussion and additional empirical results to evaluate robustness

More information

State Ownership at the Oslo Stock Exchange. Bernt Arne Ødegaard

State Ownership at the Oslo Stock Exchange. Bernt Arne Ødegaard State Ownership at the Oslo Stock Exchange Bernt Arne Ødegaard Introduction We ask whether there is a state rebate on companies listed on the Oslo Stock Exchange, i.e. whether companies where the state

More information

Labor Economics Field Exam Spring 2011

Labor Economics Field Exam Spring 2011 Labor Economics Field Exam Spring 2011 Instructions You have 4 hours to complete this exam. This is a closed book examination. No written materials are allowed. You can use a calculator. THE EXAM IS COMPOSED

More information

What is the Expected Return on a Stock?

What is the Expected Return on a Stock? What is the Expected Return on a Stock? Ian Martin Christian Wagner November, 2017 Martin & Wagner (LSE & CBS) What is the Expected Return on a Stock? November, 2017 1 / 38 What is the expected return

More information

Risk and Return. Nicole Höhling, Introduction. Definitions. Types of risk and beta

Risk and Return. Nicole Höhling, Introduction. Definitions. Types of risk and beta Risk and Return Nicole Höhling, 2009-09-07 Introduction Every decision regarding investments is based on the relationship between risk and return. Generally the return on an investment should be as high

More information

20135 Theory of Finance Part I Professor Massimo Guidolin

20135 Theory of Finance Part I Professor Massimo Guidolin MSc. Finance/CLEFIN 2014/2015 Edition 20135 Theory of Finance Part I Professor Massimo Guidolin A FEW SAMPLE QUESTIONS, WITH SOLUTIONS SET 2 WARNING: These are just sample questions. Please do not count

More information

Hedging Factor Risk Preliminary Version

Hedging Factor Risk Preliminary Version Hedging Factor Risk Preliminary Version Bernard Herskovic, Alan Moreira, and Tyler Muir March 15, 2018 Abstract Standard risk factors can be hedged with minimal reduction in average return. This is true

More information

APPEND I X NOTATION. The product of the values produced by a function f by inputting all n from n=o to n=n

APPEND I X NOTATION. The product of the values produced by a function f by inputting all n from n=o to n=n APPEND I X NOTATION In order to be able to clearly present the contents of this book, we have attempted to be as consistent as possible in the use of notation. The notation below applies to all chapters

More information

Arbitrage Pricing Theory and Multifactor Models of Risk and Return

Arbitrage Pricing Theory and Multifactor Models of Risk and Return Arbitrage Pricing Theory and Multifactor Models of Risk and Return Recap : CAPM Is a form of single factor model (one market risk premium) Based on a set of assumptions. Many of which are unrealistic One

More information

Problem Set 6. I did this with figure; bar3(reshape(mean(rx),5,5) );ylabel( size ); xlabel( value ); mean mo return %

Problem Set 6. I did this with figure; bar3(reshape(mean(rx),5,5) );ylabel( size ); xlabel( value ); mean mo return % Business 35905 John H. Cochrane Problem Set 6 We re going to replicate and extend Fama and French s basic results, using earlier and extended data. Get the 25 Fama French portfolios and factors from the

More information

DOES FINANCIAL LEVERAGE AFFECT TO ABILITY AND EFFICIENCY OF FAMA AND FRENCH THREE FACTORS MODEL? THE CASE OF SET100 IN THAILAND

DOES FINANCIAL LEVERAGE AFFECT TO ABILITY AND EFFICIENCY OF FAMA AND FRENCH THREE FACTORS MODEL? THE CASE OF SET100 IN THAILAND DOES FINANCIAL LEVERAGE AFFECT TO ABILITY AND EFFICIENCY OF FAMA AND FRENCH THREE FACTORS MODEL? THE CASE OF SET100 IN THAILAND by Tawanrat Prajuntasen Doctor of Business Administration Program, School

More information

Does the Fama and French Five- Factor Model Work Well in Japan?*

Does the Fama and French Five- Factor Model Work Well in Japan?* International Review of Finance, 2017 18:1, 2018: pp. 137 146 DOI:10.1111/irfi.12126 Does the Fama and French Five- Factor Model Work Well in Japan?* KEIICHI KUBOTA AND HITOSHI TAKEHARA Graduate School

More information

Optimal Debt-to-Equity Ratios and Stock Returns

Optimal Debt-to-Equity Ratios and Stock Returns Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 5-2014 Optimal Debt-to-Equity Ratios and Stock Returns Courtney D. Winn Utah State University Follow this

More information

OPTIMAL RISKY PORTFOLIOS- ASSET ALLOCATIONS. BKM Ch 7

OPTIMAL RISKY PORTFOLIOS- ASSET ALLOCATIONS. BKM Ch 7 OPTIMAL RISKY PORTFOLIOS- ASSET ALLOCATIONS BKM Ch 7 ASSET ALLOCATION Idea from bank account to diversified portfolio Discussion principles are the same for any number of stocks A. bonds and stocks B.

More information

Mean Variance Analysis and CAPM

Mean Variance Analysis and CAPM Mean Variance Analysis and CAPM Yan Zeng Version 1.0.2, last revised on 2012-05-30. Abstract A summary of mean variance analysis in portfolio management and capital asset pricing model. 1. Mean-Variance

More information

Asset Allocation and Risk Assessment with Gross Exposure Constraints

Asset Allocation and Risk Assessment with Gross Exposure Constraints Asset Allocation and Risk Assessment with Gross Exposure Constraints Forrest Zhang Bendheim Center for Finance Princeton University A joint work with Jianqing Fan and Ke Yu, Princeton Princeton University

More information

The UNIVERSITY WITHOUT BORDERS Journal of ECONOMICS & BUSINESS

The UNIVERSITY WITHOUT BORDERS Journal of ECONOMICS & BUSINESS The UNIVERSITY WITHOUT BORDERS Journal of ECONOMICS & BUSINESS Volume 1-2018, No 1 Edited by: Dimitrios A. Giannias, Professor HELLENIC OPEN UNIVERSITY ISSN: 2585-2825 Athens 2018 Publisher: D. Giannias

More information

Financial Mathematics III Theory summary

Financial Mathematics III Theory summary Financial Mathematics III Theory summary Table of Contents Lecture 1... 7 1. State the objective of modern portfolio theory... 7 2. Define the return of an asset... 7 3. How is expected return defined?...

More information

Sampling and sampling distribution

Sampling and sampling distribution Sampling and sampling distribution September 12, 2017 STAT 101 Class 5 Slide 1 Outline of Topics 1 Sampling 2 Sampling distribution of a mean 3 Sampling distribution of a proportion STAT 101 Class 5 Slide

More information

The Effect of Kurtosis on the Cross-Section of Stock Returns

The Effect of Kurtosis on the Cross-Section of Stock Returns Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 5-2012 The Effect of Kurtosis on the Cross-Section of Stock Returns Abdullah Al Masud Utah State University

More information

Measuring Performance with Factor Models

Measuring Performance with Factor Models Measuring Performance with Factor Models Bernt Arne Ødegaard February 21, 2017 The Jensen alpha Does the return on a portfolio/asset exceed its required return? α p = r p required return = r p ˆr p To

More information

Global Journal of Finance and Banking Issues Vol. 5. No Manu Sharma & Rajnish Aggarwal PERFORMANCE ANALYSIS OF HEDGE FUND INDICES

Global Journal of Finance and Banking Issues Vol. 5. No Manu Sharma & Rajnish Aggarwal PERFORMANCE ANALYSIS OF HEDGE FUND INDICES PERFORMANCE ANALYSIS OF HEDGE FUND INDICES Dr. Manu Sharma 1 Panjab University, India E-mail: manumba2000@yahoo.com Rajnish Aggarwal 2 Panjab University, India Email: aggarwalrajnish@gmail.com Abstract

More information

Business Statistics 41000: Probability 3

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

More information

A Sensitivity Analysis between Common Risk Factors and Exchange Traded Funds

A Sensitivity Analysis between Common Risk Factors and Exchange Traded Funds A Sensitivity Analysis between Common Risk Factors and Exchange Traded Funds Tahura Pervin Dept. of Humanities and Social Sciences, Dhaka University of Engineering & Technology (DUET), Gazipur, Bangladesh

More information

Empirical Asset Pricing Saudi Stylized Facts and Evidence

Empirical Asset Pricing Saudi Stylized Facts and Evidence Economics World, Jan.-Feb. 2016, Vol. 4, No. 1, 37-45 doi: 10.17265/2328-7144/2016.01.005 D DAVID PUBLISHING Empirical Asset Pricing Saudi Stylized Facts and Evidence Wesam Mohamed Habib The University

More information

Debt/Equity Ratio and Asset Pricing Analysis

Debt/Equity Ratio and Asset Pricing Analysis Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies Summer 8-1-2017 Debt/Equity Ratio and Asset Pricing Analysis Nicholas Lyle Follow this and additional works

More information

Applied Macro Finance

Applied Macro Finance Master in Money and Finance Goethe University Frankfurt Week 8: From factor models to asset pricing Fall 2012/2013 Please note the disclaimer on the last page Announcements Solution to exercise 1 of problem

More information

The Fama-French Three Factors in the Chinese Stock Market *

The Fama-French Three Factors in the Chinese Stock Market * DOI 10.7603/s40570-014-0016-0 210 2014 年 6 月第 16 卷第 2 期 中国会计与财务研究 C h i n a A c c o u n t i n g a n d F i n a n c e R e v i e w Volume 16, Number 2 June 2014 The Fama-French Three Factors in the Chinese

More information

Trinity College and Darwin College. University of Cambridge. Taking the Art out of Smart Beta. Ed Fishwick, Cherry Muijsson and Steve Satchell

Trinity College and Darwin College. University of Cambridge. Taking the Art out of Smart Beta. Ed Fishwick, Cherry Muijsson and Steve Satchell Trinity College and Darwin College University of Cambridge 1 / 32 Problem Definition We revisit last year s smart beta work of Ed Fishwick. The CAPM predicts that higher risk portfolios earn a higher return

More information

Equity investors increasingly view their portfolios

Equity investors increasingly view their portfolios Volume 7 Number 6 016 CFA Institute Fundamentals of Efficient Factor Investing (corrected May 017) Roger Clarke, Harindra de Silva, CFA, and Steven Thorley, CFA Combining long-only-constrained factor subportfolios

More information

Portfolio Optimization under Asset Pricing Anomalies

Portfolio Optimization under Asset Pricing Anomalies Portfolio Optimization under Asset Pricing Anomalies Pin-Huang Chou Department of Finance National Central University Jhongli 320, Taiwan Wen-Shen Li Department of Finance National Central University Jhongli

More information

Black-Litterman Model

Black-Litterman Model Institute of Financial and Actuarial Mathematics at Vienna University of Technology Seminar paper Black-Litterman Model by: Tetyana Polovenko Supervisor: Associate Prof. Dipl.-Ing. Dr.techn. Stefan Gerhold

More information

Threshold cointegration and nonlinear adjustment between stock prices and dividends

Threshold cointegration and nonlinear adjustment between stock prices and dividends Applied Economics Letters, 2010, 17, 405 410 Threshold cointegration and nonlinear adjustment between stock prices and dividends Vicente Esteve a, * and Marı a A. Prats b a Departmento de Economia Aplicada

More information

Principles of Finance

Principles of Finance Principles of Finance Grzegorz Trojanowski Lecture 7: Arbitrage Pricing Theory Principles of Finance - Lecture 7 1 Lecture 7 material Required reading: Elton et al., Chapter 16 Supplementary reading: Luenberger,

More information

Covariance Matrix Estimation using an Errors-in-Variables Factor Model with Applications to Portfolio Selection and a Deregulated Electricity Market

Covariance Matrix Estimation using an Errors-in-Variables Factor Model with Applications to Portfolio Selection and a Deregulated Electricity Market Covariance Matrix Estimation using an Errors-in-Variables Factor Model with Applications to Portfolio Selection and a Deregulated Electricity Market Warren R. Scott, Warren B. Powell Sherrerd Hall, Charlton

More information

John H. Cochrane. April University of Chicago Booth School of Business

John H. Cochrane. April University of Chicago Booth School of Business Comments on "Volatility, the Macroeconomy and Asset Prices, by Ravi Bansal, Dana Kiku, Ivan Shaliastovich, and Amir Yaron, and An Intertemporal CAPM with Stochastic Volatility John Y. Campbell, Stefano

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

Portfolio Construction Research by

Portfolio Construction Research by Portfolio Construction Research by Real World Case Studies in Portfolio Construction Using Robust Optimization By Anthony Renshaw, PhD Director, Applied Research July 2008 Copyright, Axioma, Inc. 2008

More information

Economics of Behavioral Finance. Lecture 3

Economics of Behavioral Finance. Lecture 3 Economics of Behavioral Finance Lecture 3 Security Market Line CAPM predicts a linear relationship between a stock s Beta and its excess return. E[r i ] r f = β i E r m r f Practically, testing CAPM empirically

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

On the economic significance of stock return predictability: Evidence from macroeconomic state variables

On the economic significance of stock return predictability: Evidence from macroeconomic state variables On the economic significance of stock return predictability: Evidence from macroeconomic state variables Huacheng Zhang * University of Arizona This draft: 8/31/2012 First draft: 2/28/2012 Abstract We

More information

Applied Macro Finance

Applied Macro Finance Master in Money and Finance Goethe University Frankfurt Week 8: An Investment Process for Stock Selection Fall 2011/2012 Please note the disclaimer on the last page Announcements December, 20 th, 17h-20h:

More information

Portfolios that Contain Risky Assets Portfolio Models 3. Markowitz Portfolios

Portfolios that Contain Risky Assets Portfolio Models 3. Markowitz Portfolios Portfolios that Contain Risky Assets Portfolio Models 3. Markowitz Portfolios C. David Levermore University of Maryland, College Park Math 42: Mathematical Modeling March 2, 26 version c 26 Charles David

More information

Monetary Economics Risk and Return, Part 2. Gerald P. Dwyer Fall 2015

Monetary Economics Risk and Return, Part 2. Gerald P. Dwyer Fall 2015 Monetary Economics Risk and Return, Part 2 Gerald P. Dwyer Fall 2015 Reading Malkiel, Part 2, Part 3 Malkiel, Part 3 Outline Returns and risk Overall market risk reduced over longer periods Individual

More information

Modelling the Sharpe ratio for investment strategies

Modelling the Sharpe ratio for investment strategies Modelling the Sharpe ratio for investment strategies Group 6 Sako Arts 0776148 Rik Coenders 0777004 Stefan Luijten 0783116 Ivo van Heck 0775551 Rik Hagelaars 0789883 Stephan van Driel 0858182 Ellen Cardinaels

More information

Problem Set 4 Solutions

Problem Set 4 Solutions Business John H. Cochrane Problem Set Solutions Part I readings. Give one-sentence answers.. Novy-Marx, The Profitability Premium. Preview: We see that gross profitability forecasts returns, a lot; its

More information

Module 3: Factor Models

Module 3: Factor Models Module 3: Factor Models (BUSFIN 4221 - Investments) Andrei S. Gonçalves 1 1 Finance Department The Ohio State University Fall 2016 1 Module 1 - The Demand for Capital 2 Module 1 - The Supply of Capital

More information

Introduction to Asset Pricing: Overview, Motivation, Structure

Introduction to Asset Pricing: Overview, Motivation, Structure Introduction to Asset Pricing: Overview, Motivation, Structure Lecture Notes Part H Zimmermann 1a Prof. Dr. Heinz Zimmermann Universität Basel WWZ Advanced Asset Pricing Spring 2016 2 Asset Pricing: Valuation

More information

The Finansavisen Inside Portfolio

The Finansavisen Inside Portfolio The Finansavisen Inside Portfolio B. Espen Eckbo Tuck School of Business, Darthmouth College Bernt Arne Ødegaard University of Stavanger (UiS) We consider a case of secondary dissemination of insider trades.

More information

Option-Implied Correlations, Factor Models, and Market Risk

Option-Implied Correlations, Factor Models, and Market Risk Option-Implied Correlations, Factor Models, and Market Risk Adrian Buss Lorenzo Schönleber Grigory Vilkov INSEAD Frankfurt School Frankfurt School of Finance & Management of Finance & Management 17th November

More information

Market Risk Analysis Volume I

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

More information

Appendix. In this Appendix, we present the construction of variables, data source, and some empirical procedures.

Appendix. In this Appendix, we present the construction of variables, data source, and some empirical procedures. Appendix In this Appendix, we present the construction of variables, data source, and some empirical procedures. A.1. Variable Definition and Data Source Variable B/M CAPX/A Cash/A Cash flow volatility

More information

Testing Short Term and Long Term Applicability of CAPM: A Case of Pakistani Cement Industry

Testing Short Term and Long Term Applicability of CAPM: A Case of Pakistani Cement Industry Testing Short Term and Long Term Applicability of CAPM: A Case of Pakistani Cement Industry Yasir Wahab (MS Scholar) IQRA National University, Peshawar, Pakistan Hassan Zada (PHD Scholar) Shaheed Zulfiqar

More information

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists 3,900 116,000 120M Open access books available International authors and editors Downloads Our

More information

Hedge Funds under Fire. For how long? Building Competence. Crossing Borders.

Hedge Funds under Fire. For how long? Building Competence. Crossing Borders. Hedge Funds under Fire. For how long? Building Competence. Crossing Borders. Prof. Dr. Peter Meier, Head Centre for Asset Management HFM Allocator Network: Summit Zurich, September 15, 2016 Overview: Hedge

More information

SOLUTIONS 913,

SOLUTIONS 913, Illinois State University, Mathematics 483, Fall 2014 Test No. 3, Tuesday, December 2, 2014 SOLUTIONS 1. Spring 2013 Casualty Actuarial Society Course 9 Examination, Problem No. 7 Given the following information

More information

Lecture 8: Markov and Regime

Lecture 8: Markov and Regime Lecture 8: Markov and Regime Switching Models Prof. Massimo Guidolin 20192 Financial Econometrics Spring 2016 Overview Motivation Deterministic vs. Endogeneous, Stochastic Switching Dummy Regressiom Switching

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

Factor Investing: Smart Beta Pursuing Alpha TM

Factor Investing: Smart Beta Pursuing Alpha TM In the spectrum of investing from passive (index based) to active management there are no shortage of considerations. Passive tends to be cheaper and should deliver returns very close to the index it tracks,

More information

MUHAMMAD AZAM Student of MS-Finance Institute of Management Sciences, Peshawar.

MUHAMMAD AZAM Student of MS-Finance Institute of Management Sciences, Peshawar. An Empirical Comparison of CAPM and Fama-French Model: A case study of KSE MUHAMMAD AZAM Student of MS-Finance Institute of Management Sciences, Peshawar. JASIR ILYAS Student of MS-Finance Institute of

More information

Lecture 9: Markov and Regime

Lecture 9: Markov and Regime Lecture 9: Markov and Regime Switching Models Prof. Massimo Guidolin 20192 Financial Econometrics Spring 2017 Overview Motivation Deterministic vs. Endogeneous, Stochastic Switching Dummy Regressiom Switching

More information

Models explaining the average return on the Stockholm Stock Exchange

Models explaining the average return on the Stockholm Stock Exchange Models explaining the average return on the Stockholm Stock Exchange BACHELOR THESIS WITHIN: Economics NUMBER OF CREDITS: 15 ECTS PROGRAMME OF STUDY: International Economics AUTHOR: Martin Jämtander 950807

More information

Portfolio performance and environmental risk

Portfolio performance and environmental risk Portfolio performance and environmental risk Rickard Olsson 1 Umeå School of Business Umeå University SE-90187, Sweden Email: rickard.olsson@usbe.umu.se Sustainable Investment Research Platform Working

More information