The Norwegian State Equity Ownership

Size: px
Start display at page:

Download "The Norwegian State Equity Ownership"

Transcription

1 The Norwegian State Equity Ownership B A Ødegaard 15 November 2018 Contents 1 Introduction 1 2 Doing a performance analysis Using R Changing risk levels? 10 4 Event Study 13 1 Introduction As an example application we will look at the Norwegian Government Direct Ownership at the Oslo Stock Exchange. The issue is that the Norwegian Policy is that the Government is committed to a hands off policy regarding companies on the Oslo Stock Exchange, even those where the State holds a majority (> 50%) or blocking minority (> 33%). The state policy is that listed companies should act so that they maximize the stock value, ie. act in the shareholders interest. The state is not supposed to pursue political objectives that makes companies where they are majority owners deviate from value maximization. There are several ways we can empirically investigate whether this is the case. An obvious prediction we can look at is whether the companies on the exhange with state majority ownership earns less returns than they should. This is a question we can ask as a portfolio performance question. We evaluate the state portfolio using standard methods of portfolio performance. 2 Doing a performance analysis On the course homepage you will find a dataset which is taken from Ødegaard (2009), with the monthly returns from the government s portfolio (or part of it, Statoil is actually not here since that is owned by a different department). The returns are from 1992 to First doing the obvious descriptive analysis, using octave >> sp = dlmread("../data_set/state_portfolio_returns.txt",";"); >> sprets=sp(:,2); >> mean (sprets) ans = >> annret=(1+mean(sprets))^12-1 annret = We find that the annualized return on this portfolio is 13.6% per year. Another nice way to vizualize such data is to plot the evolution of the implied wealth from investing in this portfolio. We show one way to generate this, by adding the monthly return month by month. >> wealth=[1]; >> w=1; 1

2 >> for i=1:rows(sprets) > w=w*(1+sprets(i)); > wealth=[wealth;w]; > endfor > plot(wealth) Now, whether this is a good or bad return is not something we can say without more information. In particular we need to compare this return to something else. An obvious first try is to look at an alternative investment, such as a market portfolio. You also have available various other comparable returns, such as the returns on two market portfolios ew and vw, in the period from 1980 onwards. I pull the matching market portfolio from the file with monthly market portfolios: > rm=dlmread("../../asset_pricing_ose/data_set/market_portfolios_monthly.txt",";",1,0); > ew=rm(133:348,2); > vw=rm(133:348,3); Note that I have used the dates to pick the relevant rows, investigate alternative ways of generating a matching set of returns. Generating similar wealth series for the market, we can then plot comparisons 2

3 (EW on the left, VW on the right) And then we compare the state portfolio with the market portfolios. Observe that the state s portfolio evolution is lower than either of the market portfolios. 60 state ew market vw market

4 But just comparing things to the market is not what we should be doing. Instead, this is of course when we need a model saying: What should the portfolio return have been? In particular, we need to formulate this as a finance question: What is the expected return on a portfolio with the same risk as the state portfolio? The classical performance measure is the calculation of an alpha relative to the CAPM. Let r p be the return on the state portfolio, r f be the risk free rate, r m the return on a market portfolio. Consider the CAPM relationship r pt = r ft + b p (r mt r ft ) Rewriting in excess return terms er pt = r pt r ft We see that the CAPM relationship is er mt = r mt r ft or To get a testable model we consider the regression r pt r ft = β p (r mt r ft ) er pt = β p (er mt ) er pt = a p + b p er mt + e pt If the CAPM holds a p = 0. This a p is the object of interest, and is typically called Jensens alpha. Our next step is to estimate this. To return to the question of the state s portfolio performance, this is answered by asking whether the alpha is significantly negative. If it is, it is consistent with the state ownership influencing these companies in a negative fashion. Now, step 1 is to input data > sp = dlmread("../data_set/state_portfolio_returns.txt",";",1,0); > sprets=sp(:,2); > rm=dlmread("../../asset_pricing_ose/data_set/market_portfolios_monthly.txt",";",1,0); > ew=rm(133:348,2); > vw=rm(133:348,3); To calculate excess returns we need an estimate of a risk free rate. NIBOR. We use montly observations of > RFmonthly=dlmread("../../asset_pricing_ose/data_set/NIBOR_monthly.txt",";",1,0); > RFmonthly(133,1) ans = > RFmonthly(132,1) ans = > rf=rfmonthly(131:131+rows(sprets)-1,2); Note a particular issue here. The interest rate is the interest rate observed on that date for one month borrowing going forward. We therefore have to lag this one period. We are now ready to do estimation. Here are the simple OLS estimates ols(er_s,[ones(216,1) er_m_ew]) ans = >> ols(er_s,[ones(216,1) er_m_vw]) ans =

5 Note the beta estimates. In both cases the beta is less than one. So the return on this portfolio should be less than the return on the market portfolio (according to t The economically interesting numbers here are the alpha estimates, when we use the ew index, and when we use the value weighted index. In both cases the estimates are negative. So on first glance there is some evidence that the returns on this portfolio is less than it should. But this ignores the uncertainty in the parameter estimate. Before we can conclude anything we need to estimate the uncertainty about the parameter estimate. The typical first step to inference is to calculate the variance covariance matrix of the parameter estimates. In OLS settings the following are the relations we need to crank through Under normality: b ols n y = Xb + e = (X X) 1 X y S 2 = 1 n (e e) b ols n N ( b, S 2 (X X) 1) We need to calculate the covariance matrix of the estimates Let us do this for the ew index. er_s=sprets-rf; er_m_ew=ew-rf; i=ones(rows(sprets),1); X_ew = [i er_m_ew]; b_ew=ols(er_s,x_ew) e_ew=er_s-[i er_m_ew]*b_ew; S2_ew=e_ew *e_ew/t Sigma_ew = S2_ew*inv(X_ew *X_ew) t_ew=b_ew(1)/sqrt(sigma_ew(1,1)) Σ = S 2 (X X) 1 This set of commands produces the following useful results The covariance matrix of the estimates. Sigma_ew = e e e e-03 What we want to base inference on alpha on is the t statistic > t=b_ew(1)/sqrt(sigma_ew(1,1)) t = Although negative estimate of alpha, the t stat is nowhere near significant. This result relies on the CAPM as the true model of returns. Now, an alternative model of returns than CAPM is very popular among acadmics is the Fama French 3 factor model. Essentially, this model uses two additional factors SM B and HM L to explain asset returns r pt = r ft + b p (r mt r ft ) + b HML HML + b SMB SMB Let us estimate the alpha in this setting. The additional work needed is reading in the FF factors 5

6 > FFmonthly=dlmread("../../asset_pricing_ose/data_set/pricing_factors_monthly.txt",";",13,0); > FFmonthly(108,1) ans = >> FFmonthly(109,1) ans = > SMB=FFmonthly(109:109+T-1,2); > mean(smb) ans = > HMB=FFmonthly(109:109+T-1,3); > mean(hmb) ans = Doing the regression is then a matter of the following commands i=ones(rows(sprets),1); X_ew = [i er_m_ew SMB HML]; b_ew=ols(er_s,x_ew) e_ew=er_s-x_ew*b_ew; mean(e_ew) S2_ew=e_ew *e_ew/t Sigma_ew = S2_ew*inv(X_ew *X_ew) t_alpha_ew =b_ew(1)/sqrt(sigma_ew(1,1)) Which produces the following interesting estimates b_ew = S2_ew = Sigma_ew = e e e e e e e e e e e e e e e e-03 t_alpha_ew = and b_vw = S2_vw = Sigma_vw = e e e e e e e e e e e e e e e e-03 t_alpha_vw = Again, the interesting numbers are the alpha estimates and their t-stats ew: (0.918) vw: (-1.86) 6

7 Using the ew portfolio as the market, we have a positive (albeit not significant) alpha. Using the vw portfolio we have a negative alpha. Whether it is significant depends on the significance level. Calculating the probability levels Using the normal distrubution > normcdf(t_alpha_ew) ans = > normcdf(t_alpha_vw) ans = Using the t distribution > tcdf(t_alpha_ew,t-4) ans = > tcdf(t_alpha_vw,t-4) ans = If we use a value weighted index we would reject that alpha is zero at the 5% level but not at the 2.5% level. 2.1 Using R Let us now illustrate using R in this setting. It is actually much less work. sp <- read.table ("../data_set/state_portfolio_returns.txt",header=true,sep=";"); sprets <-sp[,2]; T=dim(sp)[1] rm <- read.table("../../asset_pricing_ose/data_set/market_portfolios_monthly.txt",header=true,sep=";" ew<-rm[133:(133+t-1),2]; vw<-rm[133:(133+t-1),3]; RFmonthly<-read.table("../../asset_pricing_ose/data_set/NIBOR_monthly.txt",header=TRUE,sep=";"); rf<-rfmonthly[132:(132+t-1),2]; ers <- sprets-rf; ermew <- ew-rf; ermvw <- vw-rf; lm(formula="ers ~ ermew") lm(formula="ers ~ ermvw") Produces the output > lm(formula="ers ~ ermew") Coefficients: (Intercept) ermew > lm("ers ~ ermvw") Coefficients: (Intercept) ermvw Once we have done this, we can also ask for the complete results of the analysis 7

8 > summary(runs.ew) Call: lm(formula = "ers ~ ermew") Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) ermew <2e-16 *** --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 214 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 1 and 214 DF, p-value: < 2.2e-16 > runs.vw=lm(formula="ers ~ ermvw") > summary(runs.vw) Call: lm(formula = "ers ~ ermvw") Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) ** ermvw < 2e-16 *** --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 214 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 1 and 214 DF, p-value: < 2.2e-16 Adding the FF factors is then simply a matter of: > FFmonthly <- read.table("../../asset_pricing_ose/data_set/pricing_factors_monthly.txt",header=true,sep=";",ski > FFmonthly[108,1] [1] SMB <- FFmonthly[109:(109+T-1),2]; HML <- FFmonthly[109:(109+T-1),3]; runs.ew=lm(formula="ers ~ ermew + SMB + HML ") Which produces the following results > runs.ew=lm(formula="ers ~ ermew + SMB + HML ") > summary(runs.ew) Call: lm(formula = "ers ~ ermew + SMB + HML ") 8

9 Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) ermew <2e-16 *** SMB <2e-16 *** HML Signif. codes: 0 *** ** 0.01 * Residual standard error: on 212 degrees of freedom Multiple R-squared: 0.66,Adjusted R-squared: F-statistic: on 3 and 212 DF, p-value: < 2.2e-16 and > runs.vw=lm(formula="ers ~ ermvw + SMB + HML ") > summary(runs.vw) Call: lm(formula = "ers ~ ermvw + SMB + HML ") Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) ermvw < 2e-16 *** SMB *** HML * --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 212 degrees of freedom Multiple R-squared: ,Adjusted R-squared: F-statistic: on 3 and 212 DF, p-value: < 2.2e-16 So, the gains to going to the statistical framework are substantial, since R actually knows about the relevant statistical methods it is merely a matter of getting the data aligned. Once the data is in R it is also simple to do additional statistical analysis. Let us for example calculate a confidence interval > confint(runs.ew) 2.5 % 97.5 % (Intercept) ermew SMB HML The default is a 95 % confidence interval. If we want to relax it specify the level > confint(runs.ew,level=0.9) 5 % 95 % 9

10 (Intercept) ermew SMB HML Changing risk levels? When we run the regression er pt = a p + b p er mt + e pt we are assuming that the risk is constant. But the portfolio composition is changing over time. (See the data on the shares owned.) One way deal with that is to let the beta change over time: er pt = α p + β pt er mt If we have an estimate of beta we can simply plug in the estimated beta, calculate the ex post alpha, and take the average. On the homepage find portfolio beta estimates. β pt = i w i β it where β it is a rolling beta estimate for the beta of each stock. In figure 1 we plot the estimates of beta. Doing the calculations we find the ex post average abnormal returns Let us look at the distribution of these estimates Histogram: Ex post excess returns relative to ew portfolio

11 Figure 1 Time series of estimated beta

12 Histogram: Ex post excess returns relative to vw portfolio Calculating t-stats for testing whether the estimated excess returns are different from zero: >> t=mean(e_ew)/(std(e_ew)/sqrt(t)) t = >> t=mean(e_vw)/(std(e_vw)/sqrt(t)) t =

13 4 Event Study Exercise 1. Consider state ownership of Norwegian Listed Companies. There are arguments that state ownership will depress the price of a company, as the management does not feel the market pressure to perform, the state owner is represented by bureaucrats that do not feel it in their pockets if suddenly the stock price falls. One way this has been investigated is to do a performance evaluation of the state s direct ownership portfolio. However, there are always alternative methods to get at an issue. Let us think about the times when the state changes its ownership stake. For example cases where they lower the stake. If there is something to the monitoring story, a higher fraction of shares on private hands will increase the need for management to perform. If the market realizes that, on the date when the news that the state lowers its stake hits, the stock price should react. If there is a price increase on dates with a significant decrease in state ownership, this can be used as an estimate of a negative state premium. Your mission is to carry out such an investigation. You have access to the dates with changes in the state s portfolio. Pick those dates with a significant change in state ownership. Is there evidence of a negative state premium? Hint: You will find daily returns for some of the component stocks in the state portfolio on the web page with the state portfolio examples. Solution to Exercise 1. There is no obvious way to choose the dates, one want to choose dates with significant selling. It is also not clear whether one should take all dates with large sells, or just the first. I choose to take the first (only) date with large sells, which gives the following six observations: Norsk Vekst 18 sep Norsk Hydro 14 jul Raufoss A/S 22 dec Den norske Bank 10 apr Telenor 4 jul Yara International 21 dec lag CAR J

14 0.005 Event study CAR lag References Bernt Arne Ødegaard. Statlig eierskap på Oslo børs. Praktisk Økonomi og Finans, 25(4),

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

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

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

NHY examples. Bernt Arne Ødegaard. 23 November Estimating dividend growth in Norsk Hydro 8 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 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

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

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

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

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

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

Random Walks vs Random Variables. The Random Walk Model. Simple rate of return to an asset is: Simple rate of return

Random Walks vs Random Variables. The Random Walk Model. Simple rate of return to an asset is: Simple rate of return The Random Walk Model Assume the logarithm of 'with dividend' price, ln P(t), changes by random amounts through time: ln P(t) = ln P(t-1) + µ + ε(it) (1) where: P(t) is the sum of the price plus dividend

More information

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

Midterm Exam. b. What are the continuously compounded returns for the two stocks?

Midterm Exam. b. What are the continuously compounded returns for the two stocks? University of Washington Fall 004 Department of Economics Eric Zivot Economics 483 Midterm Exam This is a closed book and closed note exam. However, you are allowed one page of notes (double-sided). Answer

More information

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

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

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

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

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

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

Event Study. Dr. Qiwei Chen

Event Study. Dr. Qiwei Chen Event Study Dr. Qiwei Chen Event Study Analysis Definition: An event study attempts to measure the valuation effects of an economic event, such as a merger or earnings announcement, by examining the response

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

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

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

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

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

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

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

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

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

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

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

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

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

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 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

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

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

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

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

Washington University Fall Economics 487. Project Proposal due Monday 10/22 Final Project due Monday 12/3

Washington University Fall Economics 487. Project Proposal due Monday 10/22 Final Project due Monday 12/3 Washington University Fall 2001 Department of Economics James Morley Economics 487 Project Proposal due Monday 10/22 Final Project due Monday 12/3 For this project, you will analyze the behaviour of 10

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

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

Problem Set 3 Due by Sat 12:00, week 3

Problem Set 3 Due by Sat 12:00, week 3 Business 35150 John H. Cochrane Problem Set 3 Due by Sat 12:00, week 3 Part I. Reading questions: These refer to the reading assignment in the syllabus. Please hand in short answers. Where appropriate,

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

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

Portfolio Risk Management and Linear Factor Models

Portfolio Risk Management and Linear Factor Models Chapter 9 Portfolio Risk Management and Linear Factor Models 9.1 Portfolio Risk Measures There are many quantities introduced over the years to measure the level of risk that a portfolio carries, and each

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

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

Example 1 of econometric analysis: the Market Model

Example 1 of econometric analysis: the Market Model Example 1 of econometric analysis: the Market Model IGIDR, Bombay 14 November, 2008 The Market Model Investors want an equation predicting the return from investing in alternative securities. Return is

More information

Advanced Financial Economics Homework 2 Due on April 14th before class

Advanced Financial Economics Homework 2 Due on April 14th before class Advanced Financial Economics Homework 2 Due on April 14th before class March 30, 2015 1. (20 points) An agent has Y 0 = 1 to invest. On the market two financial assets exist. The first one is riskless.

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

Modelling Returns: the CER and the CAPM

Modelling Returns: the CER and the CAPM Modelling Returns: the CER and the CAPM Carlo Favero Favero () Modelling Returns: the CER and the CAPM 1 / 20 Econometric Modelling of Financial Returns Financial data are mostly observational data: they

More information

Portfolio Performance Evaluation

Portfolio Performance Evaluation Portfolio Performance Evaluation Types of Abnormal Performance: Stock Selectivity Market Timing Related: Style Analysis Performance Evaluation The market model regression in excess returns form (subtracting

More information

Estimating Beta. The standard procedure for estimating betas is to regress stock returns (R j ) against market returns (R m ): R j = a + b R m

Estimating Beta. The standard procedure for estimating betas is to regress stock returns (R j ) against market returns (R m ): R j = a + b R m Estimating Beta 122 The standard procedure for estimating betas is to regress stock returns (R j ) against market returns (R m ): R j = a + b R m where a is the intercept and b is the slope of the regression.

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

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

Topic Nine. Evaluation of Portfolio Performance. Keith Brown

Topic Nine. Evaluation of Portfolio Performance. Keith Brown Topic Nine Evaluation of Portfolio Performance Keith Brown Overview of Performance Measurement The portfolio management process can be viewed in three steps: Analysis of Capital Market and Investor-Specific

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

FIN 6160 Investment Theory. Lecture 7-10

FIN 6160 Investment Theory. Lecture 7-10 FIN 6160 Investment Theory Lecture 7-10 Optimal Asset Allocation Minimum Variance Portfolio is the portfolio with lowest possible variance. To find the optimal asset allocation for the efficient frontier

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

QR43, Introduction to Investments Class Notes, Fall 2003 IV. Portfolio Choice

QR43, Introduction to Investments Class Notes, Fall 2003 IV. Portfolio Choice QR43, Introduction to Investments Class Notes, Fall 2003 IV. Portfolio Choice A. Mean-Variance Analysis 1. Thevarianceofaportfolio. Consider the choice between two risky assets with returns R 1 and R 2.

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

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

Statistic Midterm. Spring This is a closed-book, closed-notes exam. You may use any calculator.

Statistic Midterm. Spring This is a closed-book, closed-notes exam. You may use any calculator. Statistic Midterm Spring 2018 This is a closed-book, closed-notes exam. You may use any calculator. Please answer all problems in the space provided on the exam. Read each question carefully and clearly

More information

Stochastic Models. Statistics. Walt Pohl. February 28, Department of Business Administration

Stochastic Models. Statistics. Walt Pohl. February 28, Department of Business Administration Stochastic Models Statistics Walt Pohl Universität Zürich Department of Business Administration February 28, 2013 The Value of Statistics Business people tend to underestimate the value of statistics.

More information

Problem Set 7 Part I Short answer questions on readings. Note, if I don t provide it, state which table, figure, or exhibit backs up your point

Problem Set 7 Part I Short answer questions on readings. Note, if I don t provide it, state which table, figure, or exhibit backs up your point Business 35150 John H. Cochrane Problem Set 7 Part I Short answer questions on readings. Note, if I don t provide it, state which table, figure, or exhibit backs up your point 1. Mitchell and Pulvino (a)

More information

The method of Maximum Likelihood.

The method of Maximum Likelihood. Maximum Likelihood The method of Maximum Likelihood. In developing the least squares estimator - no mention of probabilities. Minimize the distance between the predicted linear regression and the observed

More information

Lecture 5a: ARCH Models

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

More information

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

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

Information Release and the Fit of the Fama-French Model

Information Release and the Fit of the Fama-French Model Information Release and the Fit of the Fama-French Model Thomas Gilbert Christopher Hrdlicka Avraham Kamara Michael G. Foster School of Business University of Washington April 25, 2014 Risk and Return

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

Risk and Return and Portfolio Theory

Risk and Return and Portfolio Theory Risk and Return and Portfolio Theory Intro: Last week we learned how to calculate cash flows, now we want to learn how to discount these cash flows. This will take the next several weeks. We know discount

More information

Risk-Based Performance Attribution

Risk-Based Performance Attribution Risk-Based Performance Attribution Research Paper 004 September 18, 2015 Risk-Based Performance Attribution Traditional performance attribution may work well for long-only strategies, but it can be inaccurate

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

Monetary policy perceptions and risk-adjusted returns: Have investors from G-7 countries benefitted?

Monetary policy perceptions and risk-adjusted returns: Have investors from G-7 countries benefitted? Monetary policy perceptions and risk-adjusted returns: Have investors from G-7 countries benefitted? Abstract We examine the effect of the implied federal funds rate on several proxies for riskadjusted

More information

Lecture Note: Analysis of Financial Time Series Spring 2008, Ruey S. Tsay. Seasonal Time Series: TS with periodic patterns and useful in

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

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

Chapter 8 Statistical Intervals for a Single Sample

Chapter 8 Statistical Intervals for a Single Sample Chapter 8 Statistical Intervals for a Single Sample Part 1: Confidence intervals (CI) for population mean µ Section 8-1: CI for µ when σ 2 known & drawing from normal distribution Section 8-1.2: Sample

More information

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

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

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