strategy-market-maker 0.1.0

Skew-based market maker strategy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Skew-based Market Maker Strategy
//!
//! Implements both SIZE SKEW and PRICE SKEW based on inventory position:
//! - Size Skew: Adjusts order sizes based on current position
//! - Price Skew: Shifts bid/ask prices based on inventory imbalance
//!
//! Single-level market making with price-based refresh.

mod config;
mod state;
mod strategy;

pub use config::*;
pub use state::*;
pub use strategy::*;