functions for implementing the Almgren-Chriss model for optimal execution of portfolio transactions.
Project description
This package provides functions for implementing the Almgren-Chriss model for optimal execution of portfolio transactions.
What is the Almgren-Chriss Model?
The Almgren-Chriss model is a mathematical model used in financial markets to determine the optimal way to execute large orders. The model takes into account various factors such as the risk tolerance of the trader, the volatility of the market, and the impact of the trade on the market price. The goal of the model is to minimize the expected cost of the trade while taking into account the risk of price fluctuations.
Functions in the Package
The package provides the following functions:
cost_expectation: Calculate the expected cost of trading.
cost_variance: Calculate the variance of the cost of trading.
decay_rate: Calculate the trade decay rate.
trade_trajectory: Calculate the trading trajectory.
trade_list: Calculate the list of trades.
Each function takes various parameters including risk tolerance, interval between trades, volatility, permanent impact slope, temporary impact slope, total number of shares, and trading duration.
Example
Here is an example of how to use the functions in the package:
from almgren_chriss import trade_trajectory, trade_list, cost_expectation, cost_variance
lambda_ = 2e-6
tau = 1
sigma = 0.95
gamma = 2.5e-7
eta = 2.5e-6
epsilon = 0.0625
X = 1e06
T = 5
>>> trade_trajectory(lambda_, tau, sigma, gamma, eta, X, T) array([1000000.0, 428598.84574702, 182932.81426177, 76295.72161546, 27643.37739691, 0.0])
>>> trade_list(lambda_, tau, sigma, gamma, eta, X, T) array([571401.15425298, 245666.03148525, 106637.09264631, 48652.34421856, 27643.37739691])
>>> cost_expectation(lambda_, tau, sigma, gamma, eta, epsilon, X, T) 1140715.1670497851
>>> import math >>> math.sqrt(cost_variance(lambda_, tau, sigma, gamma, eta, X, T)) 449367.65254135116
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 almgren_chriss-1.0.0.tar.gz
.
File metadata
- Download URL: almgren_chriss-1.0.0.tar.gz
- Upload date:
- Size: 15.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 887a6e2b7174d8aeaabf623ea240f2699ee3e944e90d1235c95079526393fc2d |
|
MD5 | e2bad03450a6744a8e9390061b9ecdcf |
|
BLAKE2b-256 | e037117898512aba27cce1bc2335e896dd20e784cb95019fd9ac0a3de3091bcd |
File details
Details for the file almgren_chriss-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: almgren_chriss-1.0.0-py3-none-any.whl
- Upload date:
- Size: 17.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afd0be335a6b742a482f90341a66d8dbabea4c082c0a32d513f67cb7100da24d |
|
MD5 | b3712879fb6f4a9d285c5f8c4f611bfa |
|
BLAKE2b-256 | f926cd5fa18137288c2be23068029a21da036f76e87bbe9c942ffdd84d4d3240 |