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
pub(super) mod decoders;
pub(crate) mod encoders;
/// Helpers for constructing commonly used order templates.
pub mod order_builder;
pub(crate) mod stream_decoders;
pub(super) mod verify;

// Narrow re-exports: only the handshake-time decoders escape the
// `orders::common` boundary. The rest of `decoders` stays internal.
pub(crate) use decoders::{decode_commission_report, decode_completed_order, decode_execution_data, decode_open_order, decode_order_status};