JaxFin is a powerful and versatile Python library designed for pricing exotic options using a range of advanced financial techniques.
Project description
JaxFin
JaxFin
is a powerful and versatile Python library designed for pricing exotic options using a range of advanced financial techniques. The library is built with the aim of providing a robust, flexible, and efficient tool for quantitative finance professionals, researchers, and students alike. It offers a comprehensive suite of features that allow users to model, price, and analyze a wide variety of exotic options.
The core strength of JaxFin
lies in its use of the jax library. Jax is a high-performance library for accelerated array computing, offering features such as automatic differentiation (AutoGrad), accelerated linear algebra (XLA), and just-in-time compilation to GPU/TPU. By leveraging these capabilities, JaxFin
is able to perform complex financial computations with exceptional speed and efficiency.
Whether you're looking to price a complex exotic option, perform a large-scale Monte Carlo simulation, or simply explore advanced financial models, JaxFin
provides the tools and performance you need.
Table of Contents
Installation
You can install the project using pip:
pip install JaxFin
Quickstart
You now might wonder why use jaxfin
in first place, what's the advantage to any other quantitative finance library available in Python? Well if don't know it jax
is basically NumPy
, on steroids, which in short that means it provides the familiar and intuitive interface of NumPy but with the added benefits of automatic differentiation, GPU/TPU support, and JIT compilation.
jaxfin
combines the best of both worlds: the power and performance of jax
, with the simplicity and familiarity of standard Python libraries. This makes it a powerful tool for any quantitative finance professional or enthusiast.
Here's a small example to illustrate of you can use jaxfin
to price a European option using the Black-Scholes model:
import jax.numpy as jnp
from jaxfin.price_engine.black_scholes import european_price
# Black-Scholes price of an european option
spots = jnp.asarray([100])
strikes = jnp.asarray([110])
expires = jnp.asarray([1.0])
vols = jnp.asarray([0.2])
discount_rates = jnp.asarray([0.0])
european_price(spots, strikes, expires, vols, discount_rates, dtype=jnp.float32)
Computing the price price of a single option, nahh that's boring! what we can do with jaxfin is to compute the price of a basket of options leveraging the vectorization capabilities of jax
:
import jax.numpy as jnp
from jaxfin.price_engine.black_scholes import european_price
# Black-Scholes price of an european option
spots = jnp.asarray([100, 110, 120])
strikes = jnp.asarray([110, 120, 130])
expires = jnp.asarray([1.0, 1.0, 1.0])
vols = jnp.asarray([0.2, 0.2, 0.2])
discount_rates = jnp.asarray([0.0, 0.0, 0.0])
are_calls = jnp.array([True, False, False, True, True], dtype=jnp.bool_)
european_price(spots, strikes, expires, vols, discount_rates, are_calls, dtype=jnp.float32)
In addition to that the calculation of the greeks, is done not throught the closed form formulas but through the automatic differentiation capabilities of jax
. For example the function that calculates the delta of the european option under the Black Scholes model can be simply obtained as follows:
delta_european = jax.grad(european_price, argnums=0)
# Black-Scholes delta of an european option
spots = jnp.asarray(100)
strikes = jnp.asarray(110)
expires = jnp.asarray(1.0)
vols = jnp.asarray(0.2)
discount_rates = jnp.asarray(0.0)
delta_european(spots, strikes, expires, vols, discount_rates, dtype=jnp.float32)
Funcionalities implemented
- Price engine
- Black scholes
- Pricing european options
- Greeks of european options
- Black model
- Pricing european options
- Greeks of european options (just delta and gamma)
- Black scholes
- Models
- Geometric brownian motion
- Univariate
- Multivariate
- Heston
- Univariate
- Multivariate
- Geometric brownian motion
Building the Library Locally
To build the library locally, follow these steps:
- Clone the repository:
git clone https://github.com/username/project-name.git
- Navigate into the project directory:
cd JaxFin
- Install the build dependencies:
pip install -r requirements/build.txt
- Build the library:
python -m build
Sanity checks
Since we want to keep the library maintainable over the long run, this implies that code has to attain to certain standards. To achieve that the following scripts have been provided
scripts\run-pylint.bat
: This script runs Pylint, a tool that checks for errors in Python code, enforces a coding standard, and looks for code smells. It can also look for certain type errors, it can recommend suggestions about how particular blocks can be refactored and can offer you details about the code's complexity.scripts\run-tests.bat
: This script runs the unit tests for the project.scripts\run-mypy.bat
: This script runs Mypy, a static type checker for Python. Mypy can catch certain types of errors at compile time that would otherwise only be caught at runtime in standard Python. It's a way to get some of the benefits of static typing in a dynamically typed language.scripts\check-black.bat
: This script runs Black, the "uncompromising" Python code formatter. By using it, you ensure that your codebase has a consistent style, which can make it easier to read and maintain.
Contributing
Contributions are welcome! Please follow these steps:
- Fork the repository
- Create your feature branch (
git checkout -b feature
) - Commit your changes (
git commit -am 'Add new feature'
) - Push to the branch (
git push origin feature
) - Create a new Pull Request
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file JaxFin-0.2.0.tar.gz
.
File metadata
- Download URL: JaxFin-0.2.0.tar.gz
- Upload date:
- Size: 28.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9d89fdcfede4099449ae57c16d1d6c6db23e90fd0979933dde1544af512f80f |
|
MD5 | b613dd530e4379dbc39d946eff66a78b |
|
BLAKE2b-256 | f07708bb63f2dc1253d056a0cd5ee45f806380313ff2fe769c591aa55eb842f8 |
File details
Details for the file JaxFin-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: JaxFin-0.2.0-py3-none-any.whl
- Upload date:
- Size: 16.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ba84aca0e5057d366d221657c9ba0b51621d17c3daa4cf9eafa54fec69bc877 |
|
MD5 | f2ec3a87b633b67ef52af4c89d845880 |
|
BLAKE2b-256 | 9efe9c2946fc31dcbdb3daae93740a530fbd924c1c68c80a3ffb0fb67fef37fc |