nanobook_rebalancer/lib.rs
1//! nanobook-rebalancer: Portfolio rebalancer bridging nanobook to Interactive Brokers.
2//!
3//! Reads target weights from a JSON file, connects to IBKR for live positions
4//! and prices, computes the diff, and executes limit orders with risk checks
5//! and an audit trail.
6
7pub mod audit;
8pub mod config;
9pub mod broker;
10pub mod diff;
11pub mod error;
12pub mod execution;
13pub mod reconcile;
14pub mod risk;
15pub mod target;