Created
June 12, 2015 11:33
-
-
Save StuartGordonReid/075d2cbddc46ca6c8e3c to your computer and use it in GitHub Desktop.
Volatility Risk Metrics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy | |
import numpy.random as nrand | |
def vol(returns): | |
# Return the standard deviation of returns | |
return numpy.std(returns) | |
def beta(returns, market): | |
# Create a matrix of [returns, market] | |
m = numpy.matrix([returns, market]) | |
# Return the covariance of m divided by the standard deviation of the market returns | |
return numpy.cov(m)[0][1] / numpy.std(market) | |
# Example usage | |
r = nrand.uniform(-1, 1, 50) | |
m = nrand.uniform(-1, 1, 50) | |
print("vol =", vol(r)) | |
print("beta =", beta(r, m)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment