digdigdig3 0.1.13

Unified async Rust API for 44 exchange connectors — crypto, stocks, forex. REST + WebSocket.
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;