digifi 3.0.10

General purpose financial library and framework for financial modelling, portfolio optimisation, and asset pricing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # Market Making
//! 
//! Contains tools for analysing order book data and running Automated Market Maker (AMM) simulations.


// Re-Exports
pub use self::order_book::volume_imbalance;
pub use self::amm::{LiquidityCurve, AMMToken, AMMLiquidityPool, AMMTransactionData, AMMTransactionResult, SimpleAMM};


pub mod amm;
pub mod order_book;