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

Gathering the data

We will be using Alpha Vantage as our data provider. Let's download the SPX and VIX datasets in the following steps:

  1. Query for the all-time S&P 500 historical data with the ticker symbol ^GSPC:
In [ ]:    from alpha_vantage.timeseries import TimeSeries      # Update your Alpha Vantage API key here...     ALPHA_VANTAGE_API_KEY = 'PZ2ISG9CYY379KLI'      ts = TimeSeries(key=ALPHA_VANTAGE_API_KEY, output_format='pandas')     df_spx_data, meta_data = ts.get_daily_adjusted(         symbol='^GSPC', outputsize='full')
  1. Do the same for the VIX Index with the ticker symbol ^VIX:
In [ ]:    df_vix_data, meta_data = ts.get_daily_adjusted(         symbol='^VIX', outputsize='full')
  1. Inspect the contents of the DataFrame object, df_spx_data:
In [ ...
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