ibapi 3.0.1

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
13
//! Fluent builders for the historical-data API surface.
//!
//! Each builder mirrors the `RealtimeBarsBuilder` / `MarketDataBuilder` shape:
//! generic over `'a` + client type, defaults in `new()`, `mut self`-returning
//! setters, per-feature terminal `impl` blocks. See
//! [`HistoricalScheduleBuilder`] for the canonical example.

pub mod data;
pub mod schedule;
pub mod ticks;
pub use data::HistoricalDataBuilder;
pub use schedule::HistoricalScheduleBuilder;
pub use ticks::HistoricalTicksBuilder;