By Christopher van Hoecke, Maxwell Margenot, and Delaney Mackenzie
https://www.quantopian.com/lectures/variance
This lecture corresponds to the Variance lecture, which is part of the Quantopian lecture series. This homework expects you to rely heavily on the code presented in the corresponding lecture. Please copy and paste regularly from that lecture when starting to work on the problems, as trying to do them from scratch will likely be too difficult.
Part of the Quantopian Lecture Series:
In [ ]:
# Useful Libraries
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
In [ ]:
X = np.random.randint(100, size = 100)
In [ ]:
# Range of X
range_X =
## Your code goes here
print 'Range of X: %s' %(range_X)
In [ ]:
# Mean Absolute Deviation
# First calculate the value of mu (the mean)
mu = np.mean(X)
## Your code goes here
print 'Mean absolute deviation of X:', MAD
In [ ]:
# Variance and standard deviation
## Your code goes here
print 'Variance of X:',
print 'Standard deviation of X:',
In [ ]:
# Semivariance and semideviation
## Your code goes here
print 'Semivariance of X:',
print 'Semideviation of X:',
In [ ]:
# Target variance
## Your code goes here
print 'Target semivariance of X:',
print 'Target semideviation of X:',
In [ ]:
att = get_pricing('T', fields='open_price', start_date='2016-01-01', end_date='2017-01-01')
In [ ]:
# Rolling mean
## Your code goes here
In [ ]:
# Rolling standard deviation
## Your code goes here
In [ ]:
asset1 = get_pricing('AAPL', fields='open_price', start_date='2016-01-01', end_date='2017-01-01')
asset2 = get_pricing('XLF', fields='open_price', start_date='2016-01-01', end_date='2017-01-01')
cov = np.cov(asset1, asset2)[0,1]
w1 = ## Your code goes here.
w2 = 1 - w1
v1 = np.var(asset1)
v2 = np.var(asset2)
pvariance = (w1**2)*v1+(w2**2)*v2+(2*w1*w2)*cov
print 'Portfolio variance: ', pvariance
Congratulations on completing the Variance exercises!
As you learn more about writing trading models and the Quantopian platform, enter a daily Quantopian Contest. Your strategy will be evaluated for a cash prize every day.
Start by going through the Writing a Contest Algorithm tutorial.
This presentation is for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation for any security; nor does it constitute an offer to provide investment advisory or other services by Quantopian, Inc. ("Quantopian"). Nothing contained herein constitutes investment advice or offers any opinion with respect to the suitability of any security, and any views expressed herein should not be taken as advice to buy, sell, or hold any security or as an endorsement of any security or company. In preparing the information contained herein, Quantopian, Inc. has not taken into account the investment needs, objectives, and financial circumstances of any particular investor. Any views expressed and data illustrated herein were prepared based upon information, believed to be reliable, available to Quantopian, Inc. at the time of publication. Quantopian makes no guarantees as to their accuracy or completeness. All information is subject to change and may quickly become unreliable for various reasons, including changes in market conditions or economic circumstances.