17
Dr. Tucker Balch Associate Professor School of Interactive Computing Computational Investing, Part I 021: So you want to be a portfolio manager? Find out how modern electronic markets work, why stock prices change in the ways they do, and how computation can help our understanding of them. Learn to build algorithms and visualizations to inform investing practice. School of Interactive Computing

021-CompInvestI.pdf

Embed Size (px)

Citation preview

Page 1: 021-CompInvestI.pdf

Dr. Tucker Balch Associate Professor School of Interactive Computing

Computational Investing, Part I 021: So you want to be a portfolio manager?

Find out how modern electronic markets work, why stock prices change in the ways they do, and how computation can help our understanding of them. Learn to build algorithms and visualizations to inform investing practice.

School of Interactive Computing

Page 2: 021-CompInvestI.pdf

� Understand course viewpoint: Portfolio Manger.

� Understand portfolio manager incentives. � Understand two main types of funds. � Understand benchmarks.

Objectives:

2

Page 3: 021-CompInvestI.pdf

�  I assume you want to be a portfolio manager.

Viewpoint

3

Page 4: 021-CompInvestI.pdf

�  Expense ratio �  Used by mutual funds & ETFs. �  Usually less than 1%.

�  “Two and twenty” �  Classic structure for hedge funds. �  $1M with 20% / year = $60K/year.

�  How/why different?

Portfolio Manager / Hedge Fund Incentives

4

Page 5: 021-CompInvestI.pdf

Know your audience: �  Individuals �  Institutions:

� Harvard Foundation � CalPERS

�  Funds of Funds

How to Attract Investors?

5

Page 6: 021-CompInvestI.pdf

� Must have track record, or � Very compelling story and back test. �  Fit in a “pigeon hole?”

� What do investors want to see?

How to Attract Investors?

6

Page 7: 021-CompInvestI.pdf

� Reference to a benchmark (pigeon hole). � Absolute return.

Two Main Types of Fund Goals

7

Page 8: 021-CompInvestI.pdf

Thanks Lucena Research

Example: Compare with Benchmark

8

Page 9: 021-CompInvestI.pdf

What are Investors Looking For?

9

Page 10: 021-CompInvestI.pdf

�  Annual return. �  Risk: Standard deviation of

return. �  Risk: Draw down. �  Reward/Risk: Sharpe Ratio. �  Reward/Risk: Sortino Ratio. �  Jensen’s Alpha.

Common Metrics

10

Page 11: 021-CompInvestI.pdf

Example

11

Return   Sharpe   STDEV   D-­‐down   Corr  

Fund   33%   .94   0.58%   -­‐8.67%   0.89  

$DJI   43%   .63   1.23%   -­‐27.38%   1.00  

Page 12: 021-CompInvestI.pdf

� metric = (value[end]/value[start]) – 1 � Example: $100 to $110:

�  (110/100) – 1 = 0.10 = 10%

Annual Return

12

Page 13: 021-CompInvestI.pdf

�  daily_rets[i] = (value[i]/value[i-1]) – 1 �  std_metric = stdev(daily_rets)

Standard Deviation of Daily Return

13

Page 14: 021-CompInvestI.pdf

Max Draw Down

14

Page 15: 021-CompInvestI.pdf

� metric = (average(daily_rets)/stdev(daily_rets)) * sqrt(250)

Sharpe Ratio

15

Page 16: 021-CompInvestI.pdf

�  Find online broker to “paper trade.” �  Invest $1M in 4 equities. �  Assess your portfolio for 2011:

�  Annual return �  Average daily return �  Stdev of daily return �  Sharpe Ratio

�  Compare with benchmark: SPY �  Submit

�  .pdf printout of your spreadsheet. �  Screenshot of your portfolio online.

Homework 1

16

Page 17: 021-CompInvestI.pdf

Demo Using Excel

17