ibapi 3.0.0

A Rust implementation of the Interactive Brokers TWS API, providing a reliable and user friendly interface for TWS and IB Gateway. Designed with a focus on simplicity and performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Fluent builders for the real-time market-data API surface.
//!
//! Each builder mirrors the canonical shape: generic over `'a` + client
//! type, defaults in `new()`, `mut self`-returning setters, per-feature
//! terminal `impl` blocks. See [`RealtimeBarsBuilder`] for the precedent.

pub mod bars;
pub mod market_depth;
pub mod tick_by_tick;
pub use bars::RealtimeBarsBuilder;
pub use market_depth::MarketDepthBuilder;
pub use tick_by_tick::TickByTickBuilder;