NHY examples. Bernt Arne Ødegaard. 23 November Estimating dividend growth in Norsk Hydro 8

Size: px
Start display at page:

Download "NHY examples. Bernt Arne Ødegaard. 23 November Estimating dividend growth in Norsk Hydro 8"

Transcription

1 NHY examples Bernt Arne Ødegaard 23 November 2017 Abstract Finance examples using equity data for Norsk Hydro (NHY) Contents 1 Calculating Beta 4 2 Cost of Capital 7 3 Estimating dividend growth in Norsk Hydro 8 4 Asset Pricing with NHY 9 We use equity data for Norsk Hydro to illustrate empirical finance calculations. 1

2 Figure 1 Stock Price (adjusted) of NHY last five years Stock Price(adj) Time 2

3 Figure 2 Market value equity Market value equity Norsk Hydro (mill)

4 1 Calculating Beta Exercise 1. You want to estimate the beta of the company Norsk Hydro (NHY), traded at the Oslo Stock Exchange. Use the observations of the stock and the market (an Oslo Stock Exchange Index) in the period Use daily returns to estimate the beta. 2. Do you get a different estimate if you use monthly returns? Hint: Data on stock and index prices at the OSE can be downloaded from their web site (Advanced graph and historical prices) Solution to Exercise 1. The first step in this exercise is to gather returns data necessary to do the calculations. At the Oslo Stock Exchange you can download historical data on stock and index prices. If you choose to download five years worth of data, you will get series of daily prices. Note that the stock prices are adjusted for corporate events, such as the SEO in july of The beta calculation is to find cov(rm, rnhy ) β NHY = var(r m) where r m is the return on the index, and r NHY is the return on NHY. We therefore first transform prices to returns using r i,t = Pi,t Pi,t 1 P i,t 1 and then use the excel functions for covariance (COVAR) and variance (VAR) to do the calculation Doing so we find the beta of NHY as β NHY = cov(rnhy, rm) var(r m) = 1.21 This calculation is illustrated in the spreadsheet nhy_beta.xls (available on the course page). To implement the second part of the question, do the calculation from monthly returns, one need to first find monthly returns. While this can be done in a spreadsheet, it is by no means straightforward to pick end-of-month prices. It is much easier to do these calculations as regressions in R, as illustrated next. Note that the data for doing this is, as well as the code for the R examples, is available on the course homepage First, using daily returns, running the regression. Reading the data # read files pulled from OSE homepage library(zoo) OSEBXPric <- read.zoo("../data/osebx.csv", header=true,format="%d.%m.%y",sep=",",skip=1) # pick first column, the closing value OSEBXPric <- OSEBXPric[,1] names(osebxpric)[1] <- "OSEBXClose" NHYPric <- read.zoo("../data/nhy.csv", header=true,format="%d.%m.%y",sep="\t",skip=1) NHYPric <- NHYPric[,1] names(nhypric)[1] <- "NHYClose" Running the regression on daily data: > OSEBXdRet <- (OSEBXPric-lag(OSEBXPric))/lag(OSEBXPric) > NHYdRet <- (NHYPric - lag(nhypric))/lag(nhypric) > beta <- cov(osebxdret,nhydret) / var(osebxdret) > print(beta) [1]

5 > lm(nhydret~osebxdret) Call: lm(formula = NHYdRet ~ OSEBXdRet) Coefficients: (Intercept) OSEBXdRet More detailed output lm(formula = NHYdRet ~ OSEBXdRet) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) OSEBXdRet <2e-16 *** Residual standard error: on 1256 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: 2389 on 1 and 1256 DF, p-value: < 2.2e-16 Then doing the regression on monthly data > # now find monthly returns, first monthly prices > OSEBXMpric <- OSEBXPric[endpoints(OSEBXPric,on="months")] > NHYMPric <- NHYPric[endpoints(NHYPric,on="months")] > OSEBXMrets <- (OSEBXMpric-lag(OSEBXMpric))/lag(OSEBXMpric) > NHYMrets <- (NHYMPric - lag(nhympric))/lag(nhympric) > lm (NHYMrets ~ OSEBXMrets) Call: lm(formula = NHYMrets ~ OSEBXMrets) Coefficients: (Intercept) OSEBXMrets More detailed output lm(formula = NHYMrets ~ OSEBXMrets) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) * OSEBXMrets <2e-16 *** Residual standard error: on 58 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 1 and 58 DF, p-value: < 2.2e-16 5

6 Frequency Beta estimate Daily Monthly

7 2 Cost of Capital Exercise 2. We want to use data for Norsk Hydro to calculate the cost of capital for the firm. We are currently in 2010, and have access to the 2009 accounts of the company. Liabilities and equity Bank Loans and other interest-bearing short-term debt Trade and other payables Provisions Taxes payable Other current financial liabilities 826 Total current liabilities Long-term debt 88 Provisions Pension obligation Other non-current financial liabilities Other liabilities 906 Deferred tax liabililities 849 Total non-current liabilities Total liabilities Total equity The market value of equity in NHY estimated from the stock price times no shares outstanding, yearend 2009: mill. For purposes of calculating cost of capital, what are the weights to put on debt and equity? Solution to Exercise 2. So, from the figure in total liabilities for NHY, we subtract what is obviously not interest-bearing, such as taxes and trade credit. Total liabilities Trade and other payables Taxes payable Deferred tax liabilities 849 = Estimate of debt used for calculating cost of capital Weight on debt = = 0.26 Weight on equity = = =

8 3 Estimating dividend growth in Norsk Hydro The usual method for estimating the growth of dividends is to calculate the implicit growth (g) from stock prices (P ) and dividends (D), using the relationship P 0 = D 1 r g Behind this pricing formula is an assumption that the company s dividend will grow at a rate of g each year, with r as the equity cost of capital, P 0 is today s stock price, and D 1 the future dividend (at time 1). The future dividend is unknown, but it can be estimated as D 1 = D 0 (1 + g), where D 0 is the current dividend. This gives the relationship P 0 = D 0(1 + g). r g Solving this wrt g, we find that g = r D0 P D0 P 0 This expression mainly contains information observable at time t = 0. The only exception is the cost of equity capital r. Let us set this to r = 14.3%. Using this r, the following table show the calculation using data for Norsk Hydro in the period Stock Price Estimated Date Dividend Week Day Day Week growth before before after after (g) 27 apr may may may may may may average The average of the growth estimates, ĝ = 10.86%, can be used as an estimate of the future growth of dividends in Norsk Hydro. 1 The dividend payment in 2006 has been adjusted for a stock split at the dividend date. 8

9 4 Asset Pricing with NHY Exercise 3. You are investigating the market model r it = a + br mt + e it in the Norwegian Market, and apply it to the company Norsk Hydro (NHY). Collect monthly returns for NHY for the period 1980-, and monthly returns for a value weighted market index for the same period. Estimate the model and evaluate the results. You worry about the possibility of the variance of the errors varying, i.e. heteroskedasticity. To investigate this you run a regression with the squared residuals as dependent variable, and as explanatory variables a constant, the market return, and the squared market return, Do you find signs of heteroskedasticity? What can be done to remedy any problems? Solution to Exercise 3. Reading the data ê 2 t = a + b 1 r mt + b 2 r 2 mt + ε > library(zoo) > rets <- read.zoo("../data/monthly_rets.csv", + format="%y%m%d",skip=2,header=true,sep=",") > Rm <- read.table("../data/market_portfolio_returns_monthly.txt", + header=true,sep=";"); > rnhy <- rets$norsk.hydro > vw <- Rm$VW > data <- merge(rnhy,vw,all=false) > rnhy <- data$rnhy > rm <- data$vw Let us first do the standard estimation > reg <- lm(rnhy ~ rm) > summary(reg) Call: lm(formula = rnhy ~ rm) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) ** rm < 2e-16 *** --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 370 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 1 and 370 DF, p-value: < 2.2e-16 Now, doing the regression that will test for heteroskedasticity 9

10 > rm2 <- rm^2 > e2 <- residuals(reg)^2 > het <- lm(e2~rm + rm2) > summary(het) Call: lm(formula = e2 ~ rm + rm2) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) e-12 *** rm ** rm * --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 405 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 2 and 405 DF, p-value: Now, the coefficient estimates are not significant. Still, one can calculate so called Heteroskedasticity consistent standard errors, or White corrected standard errors. These typically will be slightly larger than the usual OLS errors. Doing so in this case, let us compare the two. Consider HC or HAC consistent estimation from package sandwich. > library(sandwich) > sandwich(reg) (Intercept) rm (Intercept) e e-05 rm e e-03 > sqrt(diag(vcov(reg))) (Intercept) rm > sqrt(diag(vcovhc(reg))) (Intercept) rm Compare the two cases OLS HC Exercise 4. Collect monthly stock return data for the stock Norsk Hydro for the period For the same period collect data for a market index of Norwegian stocks. 1. Estimate the market model 2. Test the hypothesis that β = Estimate a similar model in excess return form where r ft is an estimate of a risk free return. r it = α + βr mt + e t (r it r ft ) = α + β(r mt r ft ) + e t 10

11 4. Test the hypothesis that α = Add two additional factors HM L and SM B (norwegian versions of the FF factors). Estimate the model with these two factors and test whether these two factors have any explanatory power. Solution to Exercise 4. Reading the data > rnhy <- read.zoo("../data/nhy_mret.txt",header=false,format="%y%m%d") > names(rnhy)[1] <- "rnhy" > Rm <- read.zoo("../data/market_portfolios_monthly.txt", + header=true,sep=";",format="%y%m%d"); > ew <- Rm$EW > names(ew)[1] <- "ew" > rnhy <- window(rnhy, start=as.date(" "),end=as.date(" ")) > data <- merge(rnhy,ew,all=false) > rnhy <- data$rnhy > rm <- data$ew > summary(cbind(rnhy,rm)) Index rnhy rm Min. : Min. : Min. : st Qu.: st Qu.: st Qu.: Median : Median : Median : Mean : Mean : Mean : rd Qu.: rd Qu.: rd Qu.: Max. : Max. : Max. : Doing the market model regression > mm <- lm(rnhy ~ rm) > summary(mm) Call: lm(formula = rnhy ~ rm) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) rm <2e-16 *** --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 262 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 1 and 262 DF, p-value: < 2.2e-16 11

12 Model 1 (Intercept) 0.00 (0.00) rm 1.03 (0.07) R Adj. R Num. obs. 264 *** p < 0.001, ** p < 0.01, * p < 0.05, p < 0.1 The testing of whether the coefficent on the market is equal to one: Can be done in several ways, for example by looking at the confidence intervals: > confint(mm) 2.5 % 97.5 % (Intercept) rm or doing a linear hypothesis test > R=cbind(0,1) > r=cbind(1) > linearhypothesis(mm,r,r) Linear hypothesis test Hypothesis: rm = 1 Model 1: restricted model Model 2: rnhy ~ rm Res.Df RSS Df Sum of Sq F Pr(>F) In neither case can we say that the coefficient is statistically different from one. Let us next look at the regression in excess return form > FF <- read.zoo("../data/pricing_factors_monthly.txt", + header=true,sep=";",format="%y%m%d"); > RF <- read.zoo("../data/nibor_monthly.txt", + header=true,sep=";",format="%y%m%d"); > ernhy <- rnhy - RF > erm <- rm-rf > data <- merge(ernhy,erm,all=false) > ernhy <- data$ernhy > erm <- data$erm > reg <- lm(ernhy ~ erm) Call: lm(formula = ernhy ~ erm) Residuals: Min 1Q Median 3Q Max

13 Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) erm <2e-16 *** --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 262 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 1 and 262 DF, p-value: < 2.2e-16 Model 1 (Intercept) 0.00 (0.00) erm 1.03 (0.07) R Adj. R Num. obs. 264 The intercept is not statistically different from zero. Then we add the two Fama French factors: Looking at the data *** p < 0.001, ** p < 0.01, * p < 0.05, p < 0.1 > SMB <- FF$SMB > HML <- FF$HML > data <- merge(ernhy,erm,smb,hml,all=false) > ernhy <- data$ernhy > erm <- data$erm > SMB <- data$smb > HML <- data$hml > summary(cbind(ernhy,erm,smb,hml)) Index ernhy erm Min. : Min. : Min. : st Qu.: st Qu.: st Qu.: Median : Median : Median : Mean : Mean : Mean : rd Qu.: rd Qu.: rd Qu.: Max. : Max. : Max. : SMB HML Min. : Min. : st Qu.: st Qu.: Median : Median : Mean : Mean : rd Qu.: rd Qu.: Max. : Max. : and the regression > ff <- lm(ernhy~erm+smb+hml) Call: 13

14 lm(formula = ernhy ~ erm + SMB + HML) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) erm <2e-16 *** SMB <2e-16 *** HML Signif. codes: 0 *** ** 0.01 * Residual standard error: on 260 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 3 and 260 DF, p-value: < 2.2e-16 with results Model 1 (Intercept) 0.00 (0.00) erm 0.91 (0.06) SMB 0.74 (0.08) HML 0.09 (0.07) R Adj. R Num. obs. 264 *** p < 0.001, ** p < 0.01, * p < 0.05, p < 0.1 Here we find that SMB is a significant determinant. To formally investigate the joint hypothesis that both HML and SMB have zero coefficients: > linearhypothesis(ff,r,r) Linear hypothesis test Hypothesis: SMB = 0 HML = 0 Model 1: restricted model Model 2: ernhy ~ erm + SMB + HML Res.Df RSS Df Sum of Sq F Pr(>F) < 2.2e-16 *** --- Signif. codes: 0 *** ** 0.01 * Let us summarize all our estimations in one table. Such a table could with advantage have been used to present all the results, and in an academic paper it will typically be done this way, summarize several regressions in one table. 14

15 Model 1 Model 2 Model 3 (Intercept) (0.00) (0.00) (0.00) rm 1.03 (0.07) erm (0.07) (0.06) SMB 0.74 (0.08) HML 0.09 (0.07) R Adj. R Num. obs *** p < 0.001, ** p < 0.01, * p < 0.05, p < 0.1 In case you used the vw index instead, here are a summary of the same regressions Model 1 Model 2 Model 3 (Intercept) (0.00) (0.00) (0.00) rm 1.10 (0.05) erm (0.05) (0.05) SMB 0.30 (0.08) HML 0.04 (0.06) R Adj. R Num. obs *** p < 0.001, ** p < 0.01, * p < 0.05, p <

16 16

The Norwegian State Equity Ownership

The Norwegian State Equity Ownership The Norwegian State Equity Ownership B A Ødegaard 15 November 2018 Contents 1 Introduction 1 2 Doing a performance analysis 1 2.1 Using R....................................................................

More information

1 Estimating risk factors for IBM - using data 95-06

1 Estimating risk factors for IBM - using data 95-06 1 Estimating risk factors for IBM - using data 95-06 Basic estimation of asset pricing models, using IBM returns data Market model r IBM = a + br m + ɛ CAPM Fama French 1.1 Using octave/matlab er IBM =

More information

Cost of Capital. Cost of capital A firm s cost of capital is the required return on its investments.

Cost of Capital. Cost of capital A firm s cost of capital is the required return on its investments. Cost of Capital Cost of capital A firm s cost of capital is the required return on its investments. For capital budgeting purposes, need a cost of capital, the required return on the firm s investments.

More information

Seasonality at The Oslo Stock Exchange

Seasonality at The Oslo Stock Exchange Seasonality at The Oslo Stock Exchange Bernt Arne Ødegaard September 6, 2018 Seasonality concerns patterns in stock returns related to calendar time. Internationally, the best known such pattern is the

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

State Ownership at the Oslo Stock Exchange

State Ownership at the Oslo Stock Exchange State Ownership at the Oslo Stock Exchange Bernt Arne Ødegaard 1 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

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

Performance evaluation of managed portfolios

Performance evaluation of managed portfolios Performance evaluation of managed portfolios The business of evaluating the performance of a portfolio manager has developed a rich set of methodologies for testing whether a manager is skilled or not.

More information

Finansavisen A case study of secondary dissemination of insider trade notifications

Finansavisen A case study of secondary dissemination of insider trade notifications Finansavisen A case study of secondary dissemination of insider trade notifications B Espen Eckbo and Bernt Arne Ødegaard Oct 2015 Abstract We consider a case of secondary dissemination of insider trades.

More information

Crossectional asset pricing - Fama French The research post CAPM-APT. The Fama French papers and the literature following.

Crossectional asset pricing - Fama French The research post CAPM-APT. The Fama French papers and the literature following. Crossectional asset pricing - Fama French The research post CAPM-APT. The Fama French papers and the literature following. The Fama French debate Background: Fama on efficient markets Fama at the forefront

More information

Liquidity and asset pricing

Liquidity and asset pricing Liquidity and asset pricing Bernt Arne Ødegaard 21 March 2018 1 Liquidity in Asset Pricing Much market microstructure research is concerned with very a microscope view of financial markets, understanding

More information

FIN822 project 3 (Due on December 15. Accept printout submission or submission )

FIN822 project 3 (Due on December 15. Accept printout submission or  submission ) FIN822 project 3 (Due on December 15. Accept printout submission or email submission donglinli2006@yahoo.com. ) Part I The Fama-French Multifactor Model and Mutual Fund Returns Dawn Browne, an investment

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

Non-linearities in Simple Regression

Non-linearities in Simple Regression Non-linearities in Simple Regression 1. Eample: Monthly Earnings and Years of Education In this tutorial, we will focus on an eample that eplores the relationship between total monthly earnings and years

More information

Empirics of the Oslo Stock Exchange:. Asset pricing results

Empirics of the Oslo Stock Exchange:. Asset pricing results Empirics of the Oslo Stock Exchange:. Asset pricing results. 1980 2016. Bernt Arne Ødegaard Jan 2017 Abstract We show the results of numerous asset pricing specifications on the crossection of assets at

More information

Dummy Variables. 1. Example: Factors Affecting Monthly Earnings

Dummy Variables. 1. Example: Factors Affecting Monthly Earnings Dummy Variables A dummy variable or binary variable is a variable that takes on a value of 0 or 1 as an indicator that the observation has some kind of characteristic. Common examples: Sex (female): FEMALE=1

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

SDF based asset pricing

SDF based asset pricing SDF based asset pricing Bernt Arne Ødegaard 20 September 2018 Contents 1 General overview of asset pricing testing. 1 1.1 Pricing operators........................................ 1 2 Present value relationship.

More information

Multiple regression - a brief introduction

Multiple regression - a brief introduction Multiple regression - a brief introduction Multiple regression is an extension to regular (simple) regression. Instead of one X, we now have several. Suppose, for example, that you are trying to predict

More information

STATISTICS 110/201, FALL 2017 Homework #5 Solutions Assigned Mon, November 6, Due Wed, November 15

STATISTICS 110/201, FALL 2017 Homework #5 Solutions Assigned Mon, November 6, Due Wed, November 15 STATISTICS 110/201, FALL 2017 Homework #5 Solutions Assigned Mon, November 6, Due Wed, November 15 For this assignment use the Diamonds dataset in the Stat2Data library. The dataset is used in examples

More information

Economics 424/Applied Mathematics 540. Final Exam Solutions

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

More information

Asset Pricing and Excess Returns over the Market Return

Asset Pricing and Excess Returns over the Market Return Supplemental material for Asset Pricing and Excess Returns over the Market Return Seung C. Ahn Arizona State University Alex R. Horenstein University of Miami This documents contains an additional figure

More information

Regression Review and Robust Regression. Slides prepared by Elizabeth Newton (MIT)

Regression Review and Robust Regression. Slides prepared by Elizabeth Newton (MIT) Regression Review and Robust Regression Slides prepared by Elizabeth Newton (MIT) S-Plus Oil City Data Frame Monthly Excess Returns of Oil City Petroleum, Inc. Stocks and the Market SUMMARY: The oilcity

More information

Panel Data. November 15, The panel is balanced if all individuals have a complete set of observations, otherwise the panel is unbalanced.

Panel Data. November 15, The panel is balanced if all individuals have a complete set of observations, otherwise the panel is unbalanced. Panel Data November 15, 2018 1 Panel data Panel data are obsevations of the same individual on different dates. time Individ 1 Individ 2 Individ 3 individuals The panel is balanced if all individuals have

More information

Asset pricing at the Oslo Stock Exchange. A Source Book

Asset pricing at the Oslo Stock Exchange. A Source Book Asset pricing at the Oslo Stock Exchange. A Source Book Bernt Arne Ødegaard BI Norwegian School of Management and Norges Bank February 2007 In this paper we use data from the Oslo Stock Exchange in the

More information

COMPREHENSIVE WRITTEN EXAMINATION, PAPER III FRIDAY AUGUST 18, 2006, 9:00 A.M. 1:00 P.M. STATISTICS 174 QUESTIONS

COMPREHENSIVE WRITTEN EXAMINATION, PAPER III FRIDAY AUGUST 18, 2006, 9:00 A.M. 1:00 P.M. STATISTICS 174 QUESTIONS COMPREHENSIVE WRITTEN EXAMINATION, PAPER III FRIDAY AUGUST 18, 2006, 9:00 A.M. 1:00 P.M. STATISTICS 174 QUESTIONS Answer all parts. Closed book, calculators allowed. It is important to show all working,

More information

Crossectional asset pricing post CAPM-APT: Fama - French

Crossectional asset pricing post CAPM-APT: Fama - French Crossectional asset pricing post CAPM-APT: Fama - French June 6, 2018 Contents 1 The Fama French debate 1 1.1 Introduction........................................................... 1 1.2 Background: Fama

More information

6 Multiple Regression

6 Multiple Regression More than one X variable. 6 Multiple Regression Why? Might be interested in more than one marginal effect Omitted Variable Bias (OVB) 6.1 and 6.2 House prices and OVB Should I build a fireplace? The following

More information

Regression and Simulation

Regression and Simulation Regression and Simulation This is an introductory R session, so it may go slowly if you have never used R before. Do not be discouraged. A great way to learn a new language like this is to plunge right

More information

MODEL SELECTION CRITERIA IN R:

MODEL SELECTION CRITERIA IN R: 1. R 2 statistics We may use MODEL SELECTION CRITERIA IN R R 2 = SS R SS T = 1 SS Res SS T or R 2 Adj = 1 SS Res/(n p) SS T /(n 1) = 1 ( ) n 1 (1 R 2 ). n p where p is the total number of parameters. R

More information

Study 2: data analysis. Example analysis using R

Study 2: data analysis. Example analysis using R Study 2: data analysis Example analysis using R Steps for data analysis Install software on your computer or locate computer with software (e.g., R, systat, SPSS) Prepare data for analysis Subjects (rows)

More information

The New Issues Puzzle

The New Issues Puzzle The New Issues Puzzle Professor B. Espen Eckbo Advanced Corporate Finance, 2009 Contents 1 IPO Sample and Issuer Characteristics 1 1.1 Annual Sample Distribution................... 1 1.2 IPO Firms are

More information

R is a collaborative project with many contributors. Type contributors() for more information.

R is a collaborative project with many contributors. Type contributors() for more information. R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type license() or licence() for distribution details. R is a collaborative project

More information

Stat 401XV Exam 3 Spring 2017

Stat 401XV Exam 3 Spring 2017 Stat 40XV Exam Spring 07 I have neither given nor received unauthorized assistance on this exam. Name Signed Date Name Printed ATTENTION! Incorrect numerical answers unaccompanied by supporting reasoning

More information

Let us assume that we are measuring the yield of a crop plant on 5 different plots at 4 different observation times.

Let us assume that we are measuring the yield of a crop plant on 5 different plots at 4 different observation times. Mixed-effects models An introduction by Christoph Scherber Up to now, we have been dealing with linear models of the form where ß0 and ß1 are parameters of fixed value. Example: Let us assume that we are

More information

Generalized Linear Models

Generalized Linear Models Generalized Linear Models Scott Creel Wednesday, September 10, 2014 This exercise extends the prior material on using the lm() function to fit an OLS regression and test hypotheses about effects on a parameter.

More information

The Capital Asset Pricing Model

The Capital Asset Pricing Model INTRO TO PORTFOLIO RISK MANAGEMENT IN PYTHON The Capital Asset Pricing Model Dakota Wixom Quantitative Analyst QuantCourse.com The Founding Father of Asset Pricing Models CAPM The Capital Asset Pricing

More information

Daily Data is Bad for Beta: Opacity and Frequency-Dependent Betas Online Appendix

Daily Data is Bad for Beta: Opacity and Frequency-Dependent Betas Online Appendix Daily Data is Bad for Beta: Opacity and Frequency-Dependent Betas Online Appendix Thomas Gilbert Christopher Hrdlicka Jonathan Kalodimos Stephan Siegel December 17, 2013 Abstract In this Online Appendix,

More information

Time series: Variance modelling

Time series: Variance modelling Time series: Variance modelling Bernt Arne Ødegaard 5 October 018 Contents 1 Motivation 1 1.1 Variance clustering.......................... 1 1. Relation to heteroskedasticity.................... 3 1.3

More information

Inside data at the OSE Finansavisen s portfolio

Inside data at the OSE Finansavisen s portfolio Inside data at the OSE Finansavisen s portfolio Bernt Arne Ødegaard Aug 2015 This note shows the actual calculation of some of the results in the article. 1 Descriptives for the portfolio Table 1 Describing

More information

Washington University Fall Economics 487

Washington University Fall Economics 487 Washington University Fall 2009 Department of Economics James Morley Economics 487 Project Proposal due Tuesday 11/10 Final Project due Wednesday 12/9 (by 5:00pm) (20% penalty per day if the project is

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

SFSU FIN822 Project 1

SFSU FIN822 Project 1 SFSU FIN822 Project 1 This project can be done in a team of up to 3 people. Your project report must be accompanied by printouts of programming outputs. You could use any software to solve the problems.

More information

Jaime Frade Dr. Niu Interest rate modeling

Jaime Frade Dr. Niu Interest rate modeling Interest rate modeling Abstract In this paper, three models were used to forecast short term interest rates for the 3 month LIBOR. Each of the models, regression time series, GARCH, and Cox, Ingersoll,

More information

Is Economic Uncertainty Priced in the Cross-Section of Stock Returns?

Is Economic Uncertainty Priced in the Cross-Section of Stock Returns? Is Economic Uncertainty Priced in the Cross-Section of Stock Returns? Turan Bali, Georgetown University Stephen Brown, NYU Stern, University Yi Tang, Fordham University 2018 CARE Conference, Washington

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

The debate on NBIM and performance measurement, or the factor wars of 2015

The debate on NBIM and performance measurement, or the factor wars of 2015 The debate on NBIM and performance measurement, or the factor wars of 2015 May 2016 Bernt Arne Ødegaard University of Stavanger (UiS) How to think about NBIM Principal: People of Norway Drawing by Arild

More information

11/28/2018. Overview. Multiple Linear Regression Analysis. Multiple regression. Multiple regression. Multiple regression. Multiple regression

11/28/2018. Overview. Multiple Linear Regression Analysis. Multiple regression. Multiple regression. Multiple regression. Multiple regression Multiple Linear Regression Analysis BSAD 30 Dave Novak Fall 208 Source: Ragsdale, 208 Spreadsheet Modeling and Decision Analysis 8 th edition 207 Cengage Learning 2 Overview Last class we considered the

More information

Random Effects ANOVA

Random Effects ANOVA Random Effects ANOVA Grant B. Morgan Baylor University This post contains code for conducting a random effects ANOVA. Make sure the following packages are installed: foreign, lme4, lsr, lattice. library(foreign)

More information

Homework Assignment Section 3

Homework Assignment Section 3 Homework Assignment Section 3 Tengyuan Liang Business Statistics Booth School of Business Problem 1 A company sets different prices for a particular stereo system in eight different regions of the country.

More information

Measurement of cost of equity trading - the LOT measure

Measurement of cost of equity trading - the LOT measure Measurement of cost of equity trading - the LOT measure Bernt Arne Ødegaard 25 October 208 Contents 0. Intuition.................................................. The LOT cost measure 2 LOT estimation

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

Milestone2. Zillow House Price Prediciton. Group: Lingzi Hong and Pranali Shetty

Milestone2. Zillow House Price Prediciton. Group: Lingzi Hong and Pranali Shetty Milestone2 Zillow House Price Prediciton Group Lingzi Hong and Pranali Shetty MILESTONE 2 REPORT Data Collection The following additional features were added 1. Population, Number of College Graduates

More information

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998 Economics 312 Sample Project Report Jeffrey Parker Introduction This project is based on Exercise 2.12 on page 81 of the Hill, Griffiths, and Lim text. It examines how the sale price of houses in Stockton,

More information

Quantitative Techniques Term 2

Quantitative Techniques Term 2 Quantitative Techniques Term 2 Laboratory 7 2 March 2006 Overview The objective of this lab is to: Estimate a cost function for a panel of firms; Calculate returns to scale; Introduce the command cluster

More information

Addendum. Multifactor models and their consistency with the ICAPM

Addendum. Multifactor models and their consistency with the ICAPM Addendum Multifactor models and their consistency with the ICAPM Paulo Maio 1 Pedro Santa-Clara This version: February 01 1 Hanken School of Economics. E-mail: paulofmaio@gmail.com. Nova School of Business

More information

Internet Appendix to The Booms and Busts of Beta Arbitrage

Internet Appendix to The Booms and Busts of Beta Arbitrage Internet Appendix to The Booms and Busts of Beta Arbitrage Table A1: Event Time CoBAR This table reports some basic statistics of CoBAR, the excess comovement among low beta stocks over the period 1970

More information

Risk Reduction Potential

Risk Reduction Potential Risk Reduction Potential Research Paper 006 February, 015 015 Northstar Risk Corp. All rights reserved. info@northstarrisk.com Risk Reduction Potential In this paper we introduce the concept of risk reduction

More information

Long and Short Run Correlation Risk in Stock Returns

Long and Short Run Correlation Risk in Stock Returns Long and Short Run Correlation Risk in Stock Returns Discussion by Ric Colacito Econometric Society Winter Meetings, Denver, 1/2011 1 / 10 Contribution 1 Background: market variance risk premium predicts

More information

Variance clustering. Two motivations, volatility clustering, and implied volatility

Variance clustering. Two motivations, volatility clustering, and implied volatility Variance modelling The simplest assumption for time series is that variance is constant. Unfortunately that assumption is often violated in actual data. In this lecture we look at the implications of time

More information

The SAS System 11:03 Monday, November 11,

The SAS System 11:03 Monday, November 11, The SAS System 11:3 Monday, November 11, 213 1 The CONTENTS Procedure Data Set Name BIO.AUTO_PREMIUMS Observations 5 Member Type DATA Variables 3 Engine V9 Indexes Created Monday, November 11, 213 11:4:19

More information

Empirics of the Oslo Stock Exchange. Basic, descriptive, results.

Empirics of the Oslo Stock Exchange. Basic, descriptive, results. Empirics of the Oslo Stock Exchange. Basic, descriptive, results. Bernt Arne Ødegaard University of Stavanger and Norges Bank July 2009 We give some basic empirical characteristics of the Oslo Stock Exchange

More information

University of Texas at Dallas School of Management. Investment Management Spring Estimation of Systematic and Factor Risks (Due April 1)

University of Texas at Dallas School of Management. Investment Management Spring Estimation of Systematic and Factor Risks (Due April 1) University of Texas at Dallas School of Management Finance 6310 Professor Day Investment Management Spring 2008 Estimation of Systematic and Factor Risks (Due April 1) This assignment requires you to perform

More information

Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay

Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay Seasonal Time Series: TS with periodic patterns and useful in predicting quarterly earnings pricing weather-related derivatives

More information

Copyright 2011 Pearson Education, Inc. Publishing as Addison-Wesley.

Copyright 2011 Pearson Education, Inc. Publishing as Addison-Wesley. Appendix: Statistics in Action Part I Financial Time Series 1. These data show the effects of stock splits. If you investigate further, you ll find that most of these splits (such as in May 1970) are 3-for-1

More information

Determination of the Optimal Stratum Boundaries in the Monthly Retail Trade Survey in the Croatian Bureau of Statistics

Determination of the Optimal Stratum Boundaries in the Monthly Retail Trade Survey in the Croatian Bureau of Statistics Determination of the Optimal Stratum Boundaries in the Monthly Retail Trade Survey in the Croatian Bureau of Statistics Ivana JURINA (jurinai@dzs.hr) Croatian Bureau of Statistics Lidija GLIGOROVA (gligoroval@dzs.hr)

More information

Bessembinder / Zhang (2013): Firm characteristics and long-run stock returns after corporate events. Discussion by Henrik Moser April 24, 2015

Bessembinder / Zhang (2013): Firm characteristics and long-run stock returns after corporate events. Discussion by Henrik Moser April 24, 2015 Bessembinder / Zhang (2013): Firm characteristics and long-run stock returns after corporate events Discussion by Henrik Moser April 24, 2015 Motivation of the paper 3 Authors review the connection of

More information

The Equity Premium. Bernt Arne Ødegaard. 20 September 2018

The Equity Premium. Bernt Arne Ødegaard. 20 September 2018 The Equity Premium Bernt Arne Ødegaard 20 September 2018 1 Intro This lecture is concerned with the Equity Premium: How much more return an investor requires to hold a risky security (such as a stock)

More information

The Relationship between Consumer Price Index and Producer Price Index in China

The Relationship between Consumer Price Index and Producer Price Index in China Southern Illinois University Carbondale OpenSIUC Research Papers Graduate School Winter 12-15-2017 The Relationship between Consumer Price Index and Producer Price Index in China binbin shen sbinbin1217@siu.edu

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

Exchange Rate Regime Classification with Structural Change Methods

Exchange Rate Regime Classification with Structural Change Methods Exchange Rate Regime Classification with Structural Change Methods Achim Zeileis Ajay Shah Ila Patnaik http://statmath.wu-wien.ac.at/ zeileis/ Overview Exchange rate regimes What is the new Chinese exchange

More information

Econ 371 Problem Set #4 Answer Sheet. 6.2 This question asks you to use the results from column (1) in the table on page 213.

Econ 371 Problem Set #4 Answer Sheet. 6.2 This question asks you to use the results from column (1) in the table on page 213. Econ 371 Problem Set #4 Answer Sheet 6.2 This question asks you to use the results from column (1) in the table on page 213. a. The first part of this question asks whether workers with college degrees

More information

ORDERED MULTINOMIAL LOGISTIC REGRESSION ANALYSIS. Pooja Shivraj Southern Methodist University

ORDERED MULTINOMIAL LOGISTIC REGRESSION ANALYSIS. Pooja Shivraj Southern Methodist University ORDERED MULTINOMIAL LOGISTIC REGRESSION ANALYSIS Pooja Shivraj Southern Methodist University KINDS OF REGRESSION ANALYSES Linear Regression Logistic Regression Dichotomous dependent variable (yes/no, died/

More information

> attach(grocery) > boxplot(sales~discount, ylab="sales",xlab="discount")

> attach(grocery) > boxplot(sales~discount, ylab=sales,xlab=discount) Example of More than 2 Categories, and Analysis of Covariance Example > attach(grocery) > boxplot(sales~discount, ylab="sales",xlab="discount") Sales 160 200 240 > tapply(sales,discount,mean) 10.00% 15.00%

More information

Management Science Letters

Management Science Letters Management Science Letters 3 (2013) 547 554 Contents lists available at GrowingScience Management Science Letters homepage: www.growingscience.com/msl The impact of financing method on performance of private

More information

University of Zürich, Switzerland

University of Zürich, Switzerland University of Zürich, Switzerland RE - general asset features The inclusion of real estate assets in a portfolio has proven to bring diversification benefits both for homeowners [Mahieu, Van Bussel 1996]

More information

PASS Sample Size Software

PASS Sample Size Software Chapter 850 Introduction Cox proportional hazards regression models the relationship between the hazard function λ( t X ) time and k covariates using the following formula λ log λ ( t X ) ( t) 0 = β1 X1

More information

Econometric Methods for Valuation Analysis

Econometric Methods for Valuation Analysis Econometric Methods for Valuation Analysis Margarita Genius Dept of Economics M. Genius (Univ. of Crete) Econometric Methods for Valuation Analysis Cagliari, 2017 1 / 26 Correlation Analysis Simple Regression

More information

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Midterm

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Midterm Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay Midterm GSB Honor Code: I pledge my honor that I have not violated the Honor Code during this examination.

More information

The bottom-up beta of momentum

The bottom-up beta of momentum The bottom-up beta of momentum Pedro Barroso First version: September 2012 This version: November 2014 Abstract A direct measure of the cyclicality of momentum at a given point in time, its bottom-up beta

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

Problem Set 9 Heteroskedasticty Answers

Problem Set 9 Heteroskedasticty Answers Problem Set 9 Heteroskedasticty Answers /* INVESTIGATION OF HETEROSKEDASTICITY */ First graph data. u hetdat2. gra manuf gdp, s([country].) xlab ylab 300000 manufacturing output (US$ miilio 200000 100000

More information

Introduction to Population Modeling

Introduction to Population Modeling Introduction to Population Modeling In addition to estimating the size of a population, it is often beneficial to estimate how the population size changes over time. Ecologists often uses models to create

More information

Final Exam - section 1. Thursday, December hours, 30 minutes

Final Exam - section 1. Thursday, December hours, 30 minutes Econometrics, ECON312 San Francisco State University Michael Bar Fall 2013 Final Exam - section 1 Thursday, December 19 1 hours, 30 minutes Name: Instructions 1. This is closed book, closed notes exam.

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

Online Appendix What Does Health Reform Mean for the Healthcare Industry? Evidence from the Massachusetts Special Senate Election.

Online Appendix What Does Health Reform Mean for the Healthcare Industry? Evidence from the Massachusetts Special Senate Election. Online Appendix What Does Health Reform Mean for the Healthcare Industry? Evidence from the Massachusetts Special Senate Election. BY MOHAMAD M. AL-ISSISS AND NOLAN H. MILLER Appendix A: Extended Event

More information

Homework Assignment Section 3

Homework Assignment Section 3 Homework Assignment Section 3 Tengyuan Liang Business Statistics Booth School of Business Problem 1 A company sets different prices for a particular stereo system in eight different regions of the country.

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

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

Economic Review. Wenting Jiao * and Jean-Jacques Lilti

Economic Review. Wenting Jiao * and Jean-Jacques Lilti Jiao and Lilti China Finance and Economic Review (2017) 5:7 DOI 10.1186/s40589-017-0051-5 China Finance and Economic Review RESEARCH Open Access Whether profitability and investment factors have additional

More information

Supervisor: Prof. univ. dr. MOISA ALTAR MSc Student IONITA RODICA OANA

Supervisor: Prof. univ. dr. MOISA ALTAR MSc Student IONITA RODICA OANA Supervisor: Prof. univ. dr. MOISA ALTAR MSc Student IONITA RODICA OANA Motivation Objectives Literature Review International framework of current crisis Data set Early Warning System (composition, methodology,

More information

E[r i ] = r f + β i (E[r m ] r f. Investment s risk premium is proportional to the expectation of the market risk premium: er mt = r mt r ft

E[r i ] = r f + β i (E[r m ] r f. Investment s risk premium is proportional to the expectation of the market risk premium: er mt = r mt r ft The Equity Premium Equity Premium: How much more return an investor requires to hold a risky equity relative to a risk free investment. Equity Market Premium: The amount of extra return an investor needs

More information

Empirical Asset Pricing for Tactical Asset Allocation

Empirical Asset Pricing for Tactical Asset Allocation Introduction Process Model Conclusion Department of Finance The University of Connecticut School of Business stephen.r.rush@gmail.com May 10, 2012 Background Portfolio Managers Want to justify fees with

More information

Linear regression model

Linear regression model Regression Model Assumptions (Solutions) STAT-UB.0003: Regression and Forecasting Models Linear regression model 1. Here is the least squares regression fit to the Zagat restaurant data: 10 15 20 25 10

More information

Exchange Rate Regime Classification with Structural Change Methods

Exchange Rate Regime Classification with Structural Change Methods Exchange Rate Regime Classification with Structural Change Methods Achim Zeileis Ajay Shah Ila Patnaik http://statmath.wu-wien.ac.at/ zeileis/ Overview Exchange rate regimes What is the new Chinese exchange

More information

Ordinal Multinomial Logistic Regression. Thom M. Suhy Southern Methodist University May14th, 2013

Ordinal Multinomial Logistic Regression. Thom M. Suhy Southern Methodist University May14th, 2013 Ordinal Multinomial Logistic Thom M. Suhy Southern Methodist University May14th, 2013 GLM Generalized Linear Model (GLM) Framework for statistical analysis (Gelman and Hill, 2007, p. 135) Linear Continuous

More information

Size and Value in China. Jianan Liu, Robert F. Stambaugh, and Yu Yuan

Size and Value in China. Jianan Liu, Robert F. Stambaugh, and Yu Yuan Size and Value in China by Jianan Liu, Robert F. Stambaugh, and Yu Yuan Introduction China world s second largest stock market unique political and economic environments market and investors separated

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

Empirics of the Oslo Stock Exchange. Basic, descriptive, results

Empirics of the Oslo Stock Exchange. Basic, descriptive, results Empirics of the Oslo Stock Exchange. Basic, descriptive, results 198-211. Bernt Arne Ødegaard University of Stavanger and Norges Bank April 212 We give some basic empirical characteristics of the Oslo

More information