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

Downloading multiple time series data

We pass a single Quandl code as a string object in the first parameter of the quandl.get() command to download a single dataset. To download multiple datasets, we can pass a list of Quandl codes.

In the following example, we are interested in the prices of three banking stocks—ABN Amro, Banco Santander, and Kas Bank. The two-year prices from 2016 to 2017 are stored in the df variable, with only the last prices downloaded:

In [ ]:    %matplotlib inline    import quandl    quandl.ApiConfig.api_key = QUANDL_API_KEY    df = quandl.get(['EURONEXT/ABN.4',                      'EURONEXT/SANTA.4',                      'EURONEXT/KA.4'],                     collapse='monthly',                     start_date='2016-01-01',                     end_date='2017-12-31')    df.plot();

The following plot is generated:

By default, ...
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