Financial Instruments.
Project description
Finstruments: Financial Instrument Definitions
finstruments
is a financial instrument definition library built with Python and Pydantic. Out of the box, it comes with the most common financial
instruments, including equity forwards and options, as well as position, trade, and portfolio models. If an instrument
doesn't already exist, you can leverage the building blocks to easily create a new instrument for any asset class. These building
blocks also provide the functionality to serialize and deserialize to and from JSON, enabling API integration and storage in a document database.
Key Features
- Support for common financial instruments, including equity forwards and options
- Ability to extend and create custom instruments
- JSON serialization and deserialization capabilities
- Functions for date handling, business day calculations, payoffs, and other financial operations
- Lightweight with minimal dependencies
Serialization and Deserialization
finstruments
includes built-in support for serialization and deserialization of financial instruments, making it easy
to save and load objects in formats like JSON. This feature allows users to easily store the state of financial
instruments, share data between systems, or integrate with other applications.
Installation
Install finstruments
using pip
:
pip install finstruments
Usage
An equity option requires a BaseEquity
instrument object (e.g. CommonStock
) as input for the underlying field. The
payoff (VanillaPayoff
, DigitalPayoff
) and exercise_type (EuropeanExerciseStyle
, AmericanExerciseStyle
,
BermudanExerciseStyle
) fields need to be populated with objects as well.
from datetime import date
from finstruments.common.enum import Currency
from finstruments.instrument.common.cut import NysePMCut
from finstruments.instrument.common.exercise_style import AmericanExerciseStyle
from finstruments.instrument.common.option.enum import OptionType
from finstruments.instrument.common.option.payoff import VanillaPayoff
from finstruments.instrument.equity import EquityOption, CommonStock
equity_option = EquityOption(
underlying=CommonStock(ticker='AAPL'),
payoff=VanillaPayoff(
option_type=OptionType.PUT,
strike_price=100
),
exercise_type=AmericanExerciseStyle(
minimum_exercise_date=date(2022, 1, 3),
expiration_date=date(2025, 1, 3),
cut=NysePMCut()
),
denomination_currency=Currency.USD,
contract_size=100
)
Linting and Code Formatting
This project uses black for code linting and auto-formatting. If the CI pipeline fails at the linting stage, you can auto-format the code by running:
# Install black if not already installed
pip install black
# Auto-format code
black ./finstruments
Documentation
We use pdoc3 to automatically generate documentation. All Python code must follow
the Google docstring format for
compatibility with pdoc3
.
Generating HTML Documentation
To generate the documentation in HTML format, run:
pdoc3 --html ./finstruments/ --output-dir ./docs/generated --force
Generating Markdown Documentation
To generate the documentation in Markdown format, run:
pdoc3 ./finstruments/ --template-dir ./docs/templates --output-dir ./docs/md --force --config='docformat="google"'
Contributing
We welcome contributions! If you have suggestions, find bugs, or want to add features, feel free to open an issue or submit a pull request.
Setting Up a Development Environment
-
Clone the repository:
git clone https://github.com/kyleloomis/finstruments.git
-
Install dependencies:
pip install .
-
Run the tests to ensure everything is set up correctly:
pytest
Help and Support
For help or feedback, please reach out via email at kyle@spotlight.dev.
License
This project is licensed under the MIT License. See the LICENSE file for details.
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 finstruments-1.0.6.tar.gz
.
File metadata
- Download URL: finstruments-1.0.6.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fb2fad1da18a69021989381de2fc6be3ab2508f0910db641798017d853d036c |
|
MD5 | 582131e4dccf241337fb3910c0edb180 |
|
BLAKE2b-256 | f31a769e849f6e52790e24c4ea3fc7b7bdaa55575e7ac3c61fd984e5c00df04c |
File details
Details for the file finstruments-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: finstruments-1.0.6-py3-none-any.whl
- Upload date:
- Size: 25.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05070ab257ab049941c26d9a9e8153f90dbf48cb2bc396164cc440e403f5cf29 |
|
MD5 | 554eb90ce5c648f5f3a3417ab960ea72 |
|
BLAKE2b-256 | 4f44beddd63e5e6f6cc17360aaaeac74423abf8acf8a6ebfec88cecd101e91b6 |