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

Writing the yield curve bootstrapping class

The steps for writing the Python code to bootstrap the yield curve and running with a plot output are outlined as follows:

  1. Create a class named BootstrapYieldCurve, which will implement the bootstrapping of the yield curve in Python code:
import mathclass BootstrapYieldCurve(object):        def __init__(self):        self.zero_rates = dict()        self.instruments = dict()
  1. In the constructor, the two zero_rates and instruments dictionary variables are declared and will be used by several methods, as follows:
  • Add a method named add_instrument(), which appends a tuple of bond information to the instruments dictionary, indexed by the maturity time. This method is written as follows:
def add_instrument(self, par, ...
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