A one-stop library for pricing and risk-managing options, futures and other financial instruments. See below for a comprehensive overview.
FinancePy can be installed from pip using the following command:
pip install financepy
To upgrade an existing installation type:
pip install --upgrade financepy
Then start a Python terminal and type
from financepy.utils import *
Here is a quick check to make sure it all loaded. Type
>>> Date(19,2,2026).add_days(2)
You should see
21-FEB-2026
Warning: You may notice that the library can take several seconds to import after the first install if you do a wildcard import of classes which rely on certain models. This is because financepy relies upon Numba to compile a lot of the models - resulting in calculation speeds similar to C/C++. This compile only takes place on the first import of the model and the compiled code is then cached on your machine. No further compilation will be required. As a consequence subsequent imports will be almost instant.
π See Quick Start Guide to get going in 2 minutes!
The structure of financepy is as follows
βββ market/
βββ models/
βββ products/
βββ utils/
The market folder contains objects linked to structured market data such as interest rate term structures, i.e `curves' and volatility term structures and surfaces.
βββ market/
β βββ curves
β βββ composite_discount_curve.py
β βββ discount_curve_flat.py
β βββ ...
β βββ discount_curve.py
β βββ prices
β βββ volatility
β βββ equity_vol_curve.py
β βββ ...
β βββ fx_vol_surface.py
β βββ swaption_vol_surface.py
The models folder contains mathematical pricing models.
βββ models/
β βββ bachelier.py
β βββ bdt_tree.py
β βββ black_scholes.py
β βββ ...
β βββ vasicek_mc.py
These model pricing functions are not usually called directly but are called from the products objects in the products folder. There is a module for each of the covered product types which are grouped into bonds, credit, equiy, fx and rates as follows:
βββ products/
β βββ Bonds
β βββ bond_convertible.py
β βββ bond_future.py
β βββ ...
β βββ bond.py
β βββ Credit
β βββ cds_basket.py
β βββ ...
β βββ cds.py
β βββ Equity
β βββ equity_american_option.py
β βββ ...
β βββ equity_variance_swap.py
β βββ FX
β βββ fx_barrier_option.py
β βββ ...
β βββ fx_variance_swap.py
β βββ Rates
β βββ callable_swap.py
β βββ ...
β βββ ibor_swaption.py
Finally, we have the utils folder that contains useful classes such as dates, day counts and schedule generation
βββ utils/
β βββ calendar.py
β βββ day_count.py
β βββ date
β βββ schedule
and many more.
The notebooks folder contains over 90 example notebooks on how to use the library.
This software is distributed FREE AND WITHOUT ANY WARRANTY. Report any bugs or concerns here as an issue.
If you have a knowledge of Quantitative Finance and Python, then please consider contributing to this project. There are small tasks and big tasks to be done. Just look in the list of Issues and you may find something you can do. Before you begin, please comment in the issue thread in case someone else may be working on that issue. Or you can contact me directly at dominic.okane at edhec.edu. There are a number of requirements:
- The code should be Pep8 compliant.
- Comments are required for every class and function, and they should give a clear description.
- At least one broad test case and a set of unit tests must be provided for every function.
- Avoid very pythonic constructions. For example a loop is as good as a list comprehension. And with numba it can be faster. Readability and speed are the priorities.
If you are a user and require some additional functionality, then please add it as an issue.
FinancePy is a python-based library that is currently in beta version. It covers the following functionality:
- Valuation and risk models for a wide range of equity, FX, interest rate and credit derivatives.
Although it is written entirely in Python, it can achieve speeds comparable to C++ by using Numba. As a result the user has both the ability to examine the underlying code and the ability to perform pricing and risk at speeds which compare to a library written in C++.
The target audience for this library includes:
- Students of finance and students of python
- Academics teaching finance or conducting research into finance
- Traders wishing to price or risk-manage a derivative.
- Quantitative analysts seeking to price or reverse engineer a price.
- Risk managers wishing to replicate and understand price sensitivity.
- Portfolio managers wishing to check prices or calculate risk measures.
- Fund managers wanting to value a portfolio or examine a trading strategy.
Users should have a good, but not advanced, understanding of Python. In terms of Python, the style of the library has been determined subject to the following criteria:
- To make the code as simple as possible so that those with a basic Python fluency can understand and check the code.
- To keep all the code in Python so users can look through the code to the lowest level.
- To offset the performance impact of (2) by leveraging Numba to make the code as fast as possible without resorting to Cython.
- To make the design product-based rather than model-based so someone wanting to price a specific product can easily find that without having to worry too much about the model β just use the default β unless they want to. For most products, a Monte-Carlo implementation has been provided both as a reference for testing and as a way to better understand how the product functions in terms of payments, their timings and conditions.
- To make the library as complete as possible so a user can find all their required finance-related functionality in one place. This is better for the user as they only have to learn one interface.
- To avoid complex designs. Limited inheritance unless it allows for significant code reuse. Some code duplication is OK, at least temporarily.
- To have good documentation and easy-to-follow examples.
- To make it easy for interested parties to contribute.
In many cases the valuations should be close to if not identical to those produced by financial systems such as Bloomberg. However for some products, larger value differences may arise due to differences in date generation and interpolation schemes. Over time it is hoped to reduce the size of such differences.
Important Note:
- IF YOU HAVE ANY PRICING OR RISK EXAMPLES YOU WOULD LIKE REPLICATED, SEND SCREENSHOTS OF ALL THE UNDERLYING DATA, MODEL DETAILS AND VALUATION.
- IF THERE IS A PRODUCT YOU WOULD LIKE TO HAVE ADDED, SEND ME THE REQUEST.
- IF THERE IS FUNCTIONALITY YOU WOULD LIKE ADDED, SEND ME A REQUEST.
The underlying Python library is split into a number of major modules:
- Utils - These are utility functions used to assist you with modelling a security. These include dates (Date), calendars, schedule generation, some finance-related mathematics functions and some helper functions.
- Market - These are modules that capture the market information used to value a security. These include interest rate and credit curves, volatility surfaces and prices.
- Models - These are the low-level models used to value derivative securities ranging from Black-Scholes to complex stochastic volatility models.
- Products - These are the actual securities and range from Government bonds to Bermudan swaptions.
Any product valuation is the result of the following data design:
VALUATION = PRODUCT + MODEL + MARKET
The interface to each product has a value() function that will take a model and market to produce a price.
I was a Professor of Finance at the EDHEC Business School in Nice, France. I have 12 years of industry experience and over 18 years of academic experience.
Contact me at dominic.okane at edhec.edu.
FinancePy depends on Numpy, Numba, Scipy and basic python libraries such as os, sys and datetime.
See the changelog for a detailed history of changes.
GPL-3.0 License - See the license file in this folder for details.