Skip to Content
Mastering Python for Finance - Second Edition
book

Mastering Python for Finance - Second Edition

by James Ma Weiming
April 2019
Intermediate to advanced
426 pages
11h 13m
English
Packt Publishing
Content preview from Mastering Python for Finance - Second Edition

The correlation between the SPX and the VIX

We can use the corr() method to derive the correlation values between each column of values in the pandas DataFrame object, as in the following Python example:

In [ ]:    log_returns.corr()

This gives us the following correlation table:

SPX

VIX

SPX

1.000000

-0.733161

VIX

-0.733161

1.000000

At -0.731433, the SPX is negatively correlated with the VIX. To help us better visualize this relationship, we can plot both sets of the daily log return values as a scatter plot. The statsmodels.api module is used to obtain the ordinary least squares regression line between the scattered data:

In [ ]:    import statsmodels.api as sm    log_returns.plot(        figsize=(10,8), x="SPX", ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python for Finance - Second Edition

Python for Finance - Second Edition

Yuxing Yan
Python for Finance

Python for Finance

Yves Hilpisch

Publisher Resources

ISBN: 9781789346466Supplemental Content