Relati v e Val u ation E QU ITY VAL U ATION IN R Cli Ang Senior - - PowerPoint PPT Presentation

relati v e val u ation
SMART_READER_LITE
LIVE PREVIEW

Relati v e Val u ation E QU ITY VAL U ATION IN R Cli Ang Senior - - PowerPoint PPT Presentation

Relati v e Val u ation E QU ITY VAL U ATION IN R Cli Ang Senior Vice President , Compass Le x econ La w of One Price Relati v e v al u ation is based on the La w of One Price , i . e ., t w o assets that look the same m u st ha v e the price


slide-1
SLIDE 1

Relative Valuation

E QU ITY VAL U ATION IN R

Cli Ang

Senior Vice President, Compass Lexecon

slide-2
SLIDE 2

EQUITY VALUATION IN R

Law of One Price

Relative valuation is based on the Law of One Price, i.e., two assets that look the same must have the price

slide-3
SLIDE 3

EQUITY VALUATION IN R

Law of One Price (Example)

Stock Subject Firm A B Payo If Economy Does Well 9 10 8 Payo If Economy Does Poorly 3 4 2 Price ??? 7 5

slide-4
SLIDE 4

EQUITY VALUATION IN R

The Subject Firm's Price is $6

Stock Subject Firm A B Average Payo If Economy Does Well 9 10 8 9 Payo If Economy Does Poorly 3 4 2 3 Price ??? 7 5 6

slide-5
SLIDE 5

EQUITY VALUATION IN R

Identifying Comparables

Some approaches Firms within same industry classication Competitors Filter by risk, growth, and protability

slide-6
SLIDE 6

Let's practice!

E QU ITY VAL U ATION IN R

slide-7
SLIDE 7

Valuation Multiples

E QU ITY VAL U ATION IN R

Cli Ang

Senior Vice President, Compass Lexecon

slide-8
SLIDE 8

EQUITY VALUATION IN R

Price-to-Earnings Ratio

One of the most common valuation multiples used P/E Ratio = Market Price of Stock / Earnings Per Share (EPS) EPS can be historical - i.e., last twelve months (LTM) EPS can be forward-looking - i.e., next twelve months or next scal year P/E Ratios are not meaningful when the EPS is negative

slide-9
SLIDE 9

EQUITY VALUATION IN R

Price-to-Book Ratio

Another common valuation multiple P/B Ratio = Market Price of Stock / Book Value Per Share Book Value can be historical - i.e., last scal quarter's equity Book Value can be forward-looking - i.e., estimates of future book value Book Values are usually positive but there are some cases when book values are negative

slide-10
SLIDE 10

EQUITY VALUATION IN R

Implying the Price

Steps in determining the Implied Price A set of comparable companies are identied The appropriate metric or metrics are determined The median or average valuation multiple is selected The valuation multiple is applied to the subject rm's metric

slide-11
SLIDE 11

EQUITY VALUATION IN R

Implying the Price

Relative valuation generates an Implied Price Dependent on valuation of comparable companies

slide-12
SLIDE 12

EQUITY VALUATION IN R

What is the value of a midcap nancial rm with BVPS of $30?

finl <- subset(midcap400, gics_sector == "Financials") finl$p_bv <- ifelse(finl$bvps < 0, NA, finl$price / finl$bvps) finl <- finl[complete.cases(finl), ] avg_p_b <- mean(finl$p_bv) avg_p_b 2.688627 bvps <- 30 implied_price <- avg_p_b * bvps implied_price 80.65881

slide-13
SLIDE 13

Let's practice!

E QU ITY VAL U ATION IN R

slide-14
SLIDE 14

Analyzing Determinants of Multiples

E QU ITY VAL U ATION IN R

Cli Ang

Vice President, Compass Lexecon

slide-15
SLIDE 15

EQUITY VALUATION IN R

The Average of Median May Not Always Be Applicable

Use average or median if rms are very "comparable" Approaches to determine comparability: Compare risk, growth, and protability Relative position historically

slide-16
SLIDE 16

EQUITY VALUATION IN R

Regression-Based Approach

We can also use regresison analysis to help us determine what the appropriate multiple is for our subject rm P/B vs. ROE. P/E vs. 5-Year EPS Growth, or multiple regression Less subjective to arrive at the appropriate valuation multiple

slide-17
SLIDE 17

EQUITY VALUATION IN R

Example Using P/B vs. ROE

finl <- subset(midcap400, gics_sector == "Financials") finl$roe <- finl$ltm_eps / finl$bvps finl$p_bv <- ifelse(finl$bvps < 0, NA, finl$price / finl$bvps) finl <- finl[complete.cases(finl), ]

slide-18
SLIDE 18

EQUITY VALUATION IN R

Example Using P/B vs. ROE

P/B = −0.365 + 24.37 ∗ ROE R − squared = 0.8462

slide-19
SLIDE 19

EQUITY VALUATION IN R

Example Using P/B vs. ROE

reg <- lm(p_bv ~ roe, data = finl) a <- summary(reg)$coeff[1] a

  • 0.3654199

b <- summary(reg)$coeff[2] b 24.37047

slide-20
SLIDE 20

EQUITY VALUATION IN R

Assume an ROE of 10% and BVPS of $30, what is the Implied Price?

# Implied Price-to-Book roe <- 0.10 implied_p_b <- a + b * roe implied_p_b 2.071627 # Implied Price bvps <- 30 implied_price <- implied_p_b * bvps implied_price 62.14881

slide-21
SLIDE 21

Let's practice!

E QU ITY VAL U ATION IN R