Calculating the Variance – Covariance matrix MGT 4850 Spring 2007 University of Lethbridge.

Slides:



Advertisements
Similar presentations
Multi-objective Approach to Portfolio Optimization 童培俊 张帆.
Advertisements

Quadratic Portfolio Management Variance - Covariance Analysis EMIS 8381 Prepared by Carlos V Caceres SID:
Calculating the Variance –Covariance matrix
Contemporary Investments: Chapter 17 Chapter 17 RISK AND DIVERSIFICATION What is risk aversion, and why are investors, as a group, risk averse? What are.
Maths for Computer Graphics
Figure 2: US Real Returns S&P500 (Monthly, Feb 1915 – April 2004)
Linear System of Equations MGT 4850 Spring 2008 University of Lethbridge.
Efficient Portfolios MGT 4850 Spring 2008 University of Lethbridge.
Efficient Portfolios with no short-sale restriction MGT 4850 Spring 2008 University of Lethbridge.
Portfolio Models MGT 4850 Spring 2009 University of Lethbridge.
Combining Individual Securities Into Portfolios (Chapter 4)
NOTES ON MULTIPLE REGRESSION USING MATRICES  Multiple Regression Tony E. Smith ESE 502: Spatial Data Analysis  Matrix Formulation of Regression  Applications.
Session 5a Decision Models -- Prof. Juran.
Calculating the Cost of Capital MGT 4850 Spring 2008 University of Lethbridge.
MFE 230G Section 2 Hari Phatak 21 August, Administrative Notes Homework, Friday 5:00pm: 3 options –Hard copy Envelope outside F633 (usually up on.
Portfolio Models MGT 4850 Spring 2007 University of Lethbridge.
Estimating betas and Security Market Line MGT 4850 Spring 2007 University of Lethbridge.
FINANCIAL TRADING AND MARKET MICRO-STRUCTURE MGT 4850 Spring 2011 University of Lethbridge.
Basic Mathematics for Portfolio Management. Statistics Variables x, y, z Constants a, b Observations {x n, y n |n=1,…N} Mean.
Efficient Portfolios with no short-sale restriction MGT 4850 Spring 2009 University of Lethbridge.
Efficient Portfolios MGT 4850 Spring 2009 University of Lethbridge.
Estimation Error and Portfolio Optimization Global Asset Allocation and Stock Selection Campbell R. Harvey Duke University, Durham, NC USA National Bureau.
CE 311 K - Introduction to Computer Methods Daene C. McKinney
Socially Responsible Investing (SRI) Value-Based or “Ethical” mutual funds: –Create screens to prevent investment in organizations that promote or participate.
Supplemental Homework Multi-asset Portfolio Optimization.
Multi-Dimensional Arrays in Java "If debugging is the process of removing software bugs, then programming must be the process of putting them in." -- Edsger.
Efficient Portfolios without short sales MGT 4850 Spring 2007 University of Lethbridge.
Portfolio Statistics  Portfolio Expected Return: E(r p ) = w T r  Portfolio Variance:  2 p = w T  w  Sum of portfolio weights: = w T 1 –where w is.
ECON 1150 Matrix Operations Special Matrices
Quadratic Portfolio Management Variance - Covariance Analysis EMIS 8381 Prepared by Carlos V Caceres SID:
Portfolio Management-Learning Objective
Some matrix stuff.
Modern Portfolio Theory. History of MPT ► 1952 Horowitz ► CAPM (Capital Asset Pricing Model) 1965 Sharpe, Lintner, Mossin ► APT (Arbitrage Pricing Theory)
McGraw-Hill/Irwin Copyright © 2008 The McGraw-Hill Companies, Inc., All Rights Reserved. Efficient Diversification CHAPTER 6.
The Arbitrage Pricing Model Lecture XXVI. A Single Factor Model  Abstracting away from the specific form of the CAPM model, we posit a single factor.
Multivariate Statistics Matrix Algebra I W. M. van der Veld University of Amsterdam.
Business Finance (MGT 232)
1 Sample Geometry and Random Sampling Shyh-Kang Jeng Department of Electrical Engineering/ Graduate Institute of Communication/ Graduate Institute of Networking.
Principal Components: A Mathematical Introduction Simon Mason International Research Institute for Climate Prediction The Earth Institute of Columbia University.
Spreadsheet Models for Managers: Session 14 14/1 Copyright © Richard Brenner Spreadsheet Models for Managers Session 14 Using Macros II Function.
1 Multi-Objective Portfolio Optimization Jeremy Eckhause AMSC 698S Professor S. Gabriel 6 December 2004.
Multivariate Statistics Matrix Algebra I Solutions to the exercises W. M. van der Veld University of Amsterdam.
Meeting 18 Matrix Operations. Matrix If A is an m x n matrix - that is, a matrix with m rows and n columns – then the scalar entry in the i th row and.
McGraw-Hill/Irwin Copyright © 2008 The McGraw-Hill Companies, Inc., All Rights Reserved. Efficient Diversification CHAPTER 6.
Capital Market Theory (Chap 9,10 of RWJ) 2003,10,16.
Travis Wainman partner1 partner2
1.7 Linear Independence. in R n is said to be linearly independent if has only the trivial solution. in R n is said to be linearly dependent if there.
Digital Image Processing. Converting between Data Classes The general syntax is B = data_class_name (A) Where data_class_name is one of the names defined.
Matrix Multiplication The Introduction. Look at the matrix sizes.
Introduction to Financial Modeling MGT 4850 Spring 2008 University of Lethbridge.
MANY RISKY SECURITIES èWith many risky securities, principles of portfolio optimization are still the same as in Portfolio Problem #2 èSolution is also.
Lecture 16 Portfolio Weights. determine market capitalization value-weighting equal-weighting mean-variance optimization capital asset pricing model market.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
2.1 Matrix Operations 2. Matrix Algebra. j -th column i -th row Diagonal entries Diagonal matrix : a square matrix whose nondiagonal entries are zero.
Breeding Value Estimation Chapter 7. Single information source What is the breeding value of this cow for milk production? A cow produces 9000 kg milk.
REVIEW Linear Combinations Given vectors and given scalars
13.4 Product of Two Matrices
12-1 Organizing Data Using Matrices
Linear Algebra review (optional)
6 Efficient Diversification Bodie, Kane and Marcus
Regression.
2. Matrix Algebra 2.1 Matrix Operations.
Estimation Error and Portfolio Optimization
Digital Image Processing
CSCI N207 Data Analysis Using Spreadsheet
Estimation Error and Portfolio Optimization
Figure 6.1 Risk as Function of Number of Stocks in Portfolio
Linear Algebra review (optional)
Matrix Multiplication Sec. 4.2
Announcements.
Presentation transcript:

Calculating the Variance – Covariance matrix MGT 4850 Spring 2007 University of Lethbridge

Efficient Portfolios Efficient frontier Black (1972) – convex combination of any two efficient portfolios, e.g. if we have two efficient portfolios we can find the whole efficient frontier. Minimize portfolio variance, subject to defined return and sum of weights equal 1.

Transpose and Multiplication Weights - column vector Γ (row vector Γ T ) Returns - column vector E (row vector E T ) Portfolio return E T Γ 25 stocks portfolio variance Γ T S Γ Γ T (1x25)*S(25x25)* Γ(25x1) To calculate portfolio variance we need the variance/covariance matrix S.

variance/covariance matrix Using Excess Returns Return data for variance-covariance p. 151 Excess return matrix R and its transpose R T for the calculation of S matrix R T R/10 → S (p ).

VBA (skip for now) Function VarCovar(rng As Range) As Variant Dim i As Integer Dim j As Integer Dim numCols As Integer numCols = rng.Columns.Count Dim matrix() As Double ReDim matrix(numCols - 1, numCols - 1) For i = 1 To numCols For j = 1 To numCols matrix(i - 1, j - 1) = Application.WorksheetFunction.Covar(rng.Columns(i), rng.Columns(j)) Next j Next i VarCovar = matrix End Function

variance/covariance matrix Offset Function → returns a reference to a range that is a given number of rows and columns for a given reference

Single Index Model