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