Difference between revisions of "Midterm Study Guide"

From Quantitative Analysis Software Courses
Jump to navigation Jump to search
Line 1: Line 1:
 
==Overview For Fall 2016==
 
==Overview For Fall 2016==
 +
 +
The test is closed book, closed notes, closed internet.  You are allowed to use scratch paper and a pencil.  You can also use one of the calculators permitted for the SAT [https://collegereadiness.collegeboard.org/sat/taking-the-test/calculator-policy]
  
 
Scope of midterm exam for Fall 2016
 
Scope of midterm exam for Fall 2016

Revision as of 23:54, 19 October 2016

Overview For Fall 2016

The test is closed book, closed notes, closed internet. You are allowed to use scratch paper and a pencil. You can also use one of the calculators permitted for the SAT [1]

Scope of midterm exam for Fall 2016

For MC1: Python

  • All lessons in MC1

For MC2: Finance

  • Lesson 1 / "What Hedge Funds really do", Chapter 2: So you want to be a hedge fund manager?
  • Lesson 2 / "What Hedge Funds really do", Chapter 4: Market - making mechanics
  • Lesson 3 / "What Hedge Funds really do", Chapter 5: Introduction to company valuation
  • Lesson 4 / "What Hedge Funds really do", Chapter 7: Framework for investing: The Capital Assets Pricing Model (CAPM)
  • Lesson 5 / "What Hedge Funds really do", Chapter 7: Framework for investing: The Capital Assets Pricing Model (CAPM)
  • Lesson 6
  • Lesson 8 / "What Hedge Funds really do", Chapter 8: The Efficient Market Hypothesis(EMH) - its three versions
  • Lesson 9 / "What Hedge Funds really do", Chapter 9:The fundamental law of active portfolio management
  • Cramer Video
  • Not included: Lesson 7

For MC3: Machine Learning

  • Lesson 1 / "Machine Learning", Chapter 1, Introduction
  • Lesson 2 / "Machine Learning", Chapter 8, Instance-based Learning
  • Lesson 3
  • Lesson 4 / "Perfect Random Tree Ensembles" by Adele Cutler
  • Decision Trees Part 1 / "Machine Learning", Chapter 3, Decision Tree Learning
  • Decision Trees Part 2

Specific topics for Machine Learning:

  • Types of learning problems: Regression versus Classification
  • Supervised versus Unsupervised.
  • Compare properties of kNN versus, decision trees, linear regression (training cost, query cost, prediction accuracy)
  • Compare different methods of building a decision tree
  • Parameterized models versus instance-based models
  • Overfitting
  • Measuring the quality of predictions: RMSE, correlation, other?
  • Bagging
  • Boosting

Resources

Example Questions

1. Fill in section A to complete code that will cause the following output:

import numpy as np
j = np.random.random([2,2])
print j
print _A_ 

Output:

[[ 0.1624438 ,  0.14157016],
[ 0.07818402,  0.85854546]]
[[ 1.        ,  1.        ],
[ 0.48129886,  6.06445229]])

2. Why (or why not) is Sharpe Ratio a better measure of portfolio performance than cumulative return?

3. Suppose we have a group of N assets in our portfolio with allocation w_i to each asset i, each with a specific Beta_i and alpha_i. Write an equation that describes the expected return of the entire portfolio in terms of the market return r_m.

4. Assume two stocks, A and B, that you’d like to combine into a portfolio with weights w_a, w_b respectively. You have calculated Beta values and estimated alphas for each. Your objective is to gain positive return while minimizing market risk. Utilize CAPM to find the weights that achieve this goal. Assuming your estimates of alpha are correct, what is your expected return?

  • Beta_A = 0.5, Beta_B = 1.0
  • alpha_A = 5%, alpha_B = -10%

5. Write the equation for Sharpe Ratio using 6 months of data assuming returns are calculated monthly or weekly.

6. What is the output of the following code snippet?

import numpy as np
A = np.ones((3,3))
w = np.array([0.0, 0.1, 0.2])
print (A*w).sum()
print (A*w).sum(axis=0)
print (A*w).sum(axis=1)

7. A company promises to pay a $30 dividend every year starting one year from now. Based on the riskiness of the company, you believe the discount rate should be 7% per year. Assume 0% inflation. Based on these factors only, what is the present value of this company?

8. Define each of these company valuation methods (one or two sentences or a formula):

  • Intrinsic value
  • Market capitalization
  • Book value

9. Define

  • Weak EMH
  • Semi-strong EMH
  • Strong EMH

10. Which form(s) of the EMH prohibit profiting from Fundamental Analysis?

11. Given an order book be able to estimate the average price that a BUY or SELL order will be filled at.

12. Consider a $100 bill and a $100 US bond payable in one year. Which statement is true: a. The $100 is worth more than the bond b. The $100 bond is worth more than the bill. c. They are both worth the same.

12. Write the equation that describes the Fundamental Law of Active Management. Define each term.

13. Consider two portfolio managers A and B. They both have the same Information Ratio and the same Information Coefficient. Suppose B wants to improve his Information Ratio to be double that of A. How can he accomplish his goal?

14. Define "survivor bias"

Legacy

Midterm Study Guide Legacy