digdigdig3 0.1.9

Multi-exchange connector library — unified async Rust API for 42 connectors: 19 CEX, 3 DEX, 5 forex/brokers, 14 stock providers, and 2 data feeds
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Brokers Module
//!
//! Multi-asset brokers with full trading capabilities.
//!
//! ## Available Brokers
//!
//! - **Interactive Brokers**: Multi-asset broker (stocks, forex, futures, options)
//!   - Gateway: 10 req/sec (individual accounts)
//!   - OAuth: 50 req/sec (enterprise accounts)
//!   - REST + WebSocket streaming
//!   - Global markets (150+ exchanges)

pub mod ib;

pub use ib::IBConnector;

#[cfg(feature = "websocket")]
pub use ib::IBWebSocket;