
Introduction
This library provides a comprehensive Rust implementation of the Interactive Brokers TWS API, offering a robust and user-friendly interface for TWS and IB Gateway. Designed with performance and simplicity in mind, ibapi is a good fit for automated trading systems, market analysis, real-time data collection and portfolio management tools.
With this fully featured API, you can retrieve account information, access real-time and historical market data, manage orders, perform market scans, and access news and Wall Street Horizons (WSH) event data. Future updates will focus on bug fixes, maintaining parity with the official API, and enhancing usability.
Sync/Async Architecture
rust-ibapi ships both asynchronous (Tokio) and blocking (threaded) clients. The async client is enabled by default; opt into the blocking client with the sync feature and use both together when you need to mix execution models.
- async (default): Non-blocking client using Tokio tasks and broadcast channels. Available as
ibapi::Client.
- sync: Blocking client using crossbeam channels. Available as
ibapi::client::blocking::Client (or ibapi::Client when async is disabled).
ibapi = "2.1"
ibapi = { version = "2.1", default-features = false, features = ["sync"] }
ibapi = { version = "2.1", default-features = false, features = ["sync", "async"] }
cargo test
cargo run --example async_connect
cargo test --no-default-features --features sync
cargo test --all-features
When both features are enabled, import the blocking types explicitly:
use ibapi::Client; use ibapi::client::blocking::Client;
📚 Migrating from v1.x? See the Migration Guide for step-by-step upgrade instructions.
If you encounter any issues or require a missing feature, please review the issues list before submitting a new one.
Available APIs
The Client documentation provides comprehensive details on all currently available APIs, including trading, account management, and market data features, along with examples to help you get started.
Install
Check crates.io/crates/ibapi for the latest available version and installation instructions.
Examples
These examples demonstrate key features of the ibapi API.
Connecting to TWS
Sync Example
use ibapi::client::blocking::Client;
use ibapi::prelude::*;
fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).expect("connection to TWS failed!");
println!("Successfully connected to TWS at {connection_url}");
}
Async Example
use ibapi::prelude::*;
#[tokio::main]
async fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).await.expect("connection to TWS failed!");
println!("Successfully connected to TWS at {connection_url}");
}
Note: Use 127.0.0.1 instead of localhost for the connection. On some systems, localhost resolves to an IPv6 address, which TWS may block. TWS only allows specifying IPv4 addresses in the allowed IP addresses list.
Creating Contracts
The library provides a powerful type-safe contract builder API. Here's how to create a stock contract for TSLA:
use ibapi::prelude::*;
let contract = Contract::stock("TSLA").build();
let contract = Contract::stock("7203")
.on_exchange("TSEJ")
.in_currency("JPY")
.build();
The builder API provides type-safe construction for all contract types with compile-time validation:
let option = Contract::call("AAPL")
.strike(150.0)
.expires_on(2024, 12, 20)
.build();
let futures = Contract::futures("ES")
.front_month() .build();
let forex = Contract::forex("EUR", "USD").build();
let treasury = Contract::bond_cusip("912810RN0");
let euro_bond = Contract::bond_isin("DE0001102309");
See the Contract Builder Guide for comprehensive documentation on all contract types.
For lower-level control, you can also create contracts directly using the type wrappers:
use ibapi::prelude::*;
let contract = Contract {
symbol: Symbol::from("TSLA"),
security_type: SecurityType::Stock,
currency: Currency::from("USD"),
exchange: Exchange::from("SMART"),
..Default::default()
};
For a complete list of contract attributes, explore the Contract documentation.
Requesting Historical Market Data
Sync Example
use time::macros::datetime;
use ibapi::prelude::*;
fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).expect("connection to TWS failed!");
let contract = Contract::stock("AAPL").build();
let historical_data = client
.historical_data(
&contract,
Some(datetime!(2023-04-11 20:00 UTC)),
1.days(),
HistoricalBarSize::Hour,
Some(HistoricalWhatToShow::Trades),
TradingHours::Regular,
)
.expect("historical data request failed");
println!("start: {:?}, end: {:?}", historical_data.start, historical_data.end);
for bar in &historical_data.bars {
println!("{bar:?}");
}
}
Async Example
use time::macros::datetime;
use ibapi::prelude::*;
#[tokio::main]
async fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).await.expect("connection to TWS failed!");
let contract = Contract::stock("AAPL").build();
let historical_data = client
.historical_data(
&contract,
Some(datetime!(2023-04-11 20:00 UTC)),
1.days(),
HistoricalBarSize::Hour,
Some(HistoricalWhatToShow::Trades),
TradingHours::Regular,
)
.await
.expect("historical data request failed");
println!("start: {:?}, end: {:?}", historical_data.start, historical_data.end);
for bar in &historical_data.bars {
println!("{bar:?}");
}
}
Requesting Realtime Market Data
Sync Example
use ibapi::prelude::*;
fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).expect("connection to TWS failed!");
let contract = Contract::stock("AAPL").build();
let subscription = client
.realtime_bars(&contract, RealtimeBarSize::Sec5, RealtimeWhatToShow::Trades, TradingHours::Extended)
.expect("realtime bars request failed!");
for bar in subscription {
println!("bar: {bar:?}");
}
}
Async Example
use ibapi::prelude::*;
use futures::StreamExt;
#[tokio::main]
async fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).await.expect("connection to TWS failed!");
let contract = Contract::stock("AAPL").build();
let mut subscription = client
.realtime_bars(&contract, RealtimeBarSize::Sec5, RealtimeWhatToShow::Trades, TradingHours::Extended)
.await
.expect("realtime bars request failed!");
while let Some(bar) = subscription.next().await {
println!("bar: {bar:?}");
}
}
In both examples, the request for realtime bars returns a Subscription that can be used as an iterator (sync) or stream (async). The subscription is automatically cancelled when it goes out of scope.
Non-blocking Iteration (Sync)
use std::time::Duration;
loop {
match subscription.try_next() {
Some(bar) => println!("bar: {bar:?}"),
None => {
std::thread::sleep(Duration::from_millis(100));
}
}
}
Explore the Subscription documentation for more details.
Since subscriptions can be converted to iterators, it is easy to iterate over multiple contracts.
use ibapi::prelude::*;
fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).expect("connection to TWS failed!");
let contract_aapl = Contract::stock("AAPL").build();
let contract_nvda = Contract::stock("NVDA").build();
let subscription_aapl = client
.realtime_bars(&contract_aapl, RealtimeBarSize::Sec5, RealtimeWhatToShow::Trades, TradingHours::Extended)
.expect("realtime bars request failed!");
let subscription_nvda = client
.realtime_bars(&contract_nvda, RealtimeBarSize::Sec5, RealtimeWhatToShow::Trades, TradingHours::Extended)
.expect("realtime bars request failed!");
for (bar_aapl, bar_nvda) in subscription_aapl.iter().zip(subscription_nvda.iter()) {
println!("AAPL {}, NVDA {}", bar_aapl.close, bar_nvda.close);
}
}
Note: When using zip, the iteration will stop if either subscription ends. For independent processing, consider handling each subscription separately.
Placing Orders
For a comprehensive guide on all supported order types and their usage, see the Order Types Guide.
Sync Example
use ibapi::prelude::*;
pub fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).expect("connection to TWS failed!");
let contract = Contract::stock("AAPL").build();
let order_id = client.order(&contract)
.buy(100)
.market()
.submit()
.expect("order submission failed!");
println!("Order submitted with ID: {}", order_id);
let order_id = client.order(&contract)
.sell(50)
.limit(150.00)
.good_till_cancel()
.outside_rth()
.submit()
.expect("order submission failed!");
println!("Limit order submitted with ID: {}", order_id);
}
Async Example
use ibapi::prelude::*;
#[tokio::main]
async fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).await.expect("connection to TWS failed!");
let contract = Contract::stock("AAPL").build();
let order_id = client.order(&contract)
.buy(100)
.market()
.submit()
.await
.expect("order submission failed!");
println!("Order submitted with ID: {}", order_id);
let bracket_ids = client.order(&contract)
.buy(100)
.bracket()
.entry_limit(150.00)
.take_profit(160.00)
.stop_loss(145.00)
.submit_all()
.await
.expect("bracket order submission failed!");
println!("Bracket order IDs - Parent: {}, TP: {}, SL: {}",
bracket_ids.parent, bracket_ids.take_profit, bracket_ids.stop_loss);
}
Monitoring Order Updates
For real-time monitoring of order status, executions, and commissions, set up an order update stream before submitting orders:
Sync Example
use ibapi::prelude::*;
use std::thread;
use std::sync::Arc;
fn main() {
let connection_url = "127.0.0.1:4002";
let client = Arc::new(Client::connect(connection_url, 100).expect("connection to TWS failed!"));
let monitor_client = client.clone();
let _monitor_handle = thread::spawn(move || {
let stream = monitor_client.order_update_stream().expect("failed to create stream");
for update in stream {
match update {
OrderUpdate::OrderStatus(status) => {
println!("Order {} Status: {}", status.order_id, status.status);
println!(" Filled: {}, Remaining: {}", status.filled, status.remaining);
}
OrderUpdate::OpenOrder(data) => {
println!("Open Order {}: {} {}",
data.order_id, data.order.action, data.contract.symbol);
}
OrderUpdate::ExecutionData(exec) => {
println!("Execution: {} shares @ {}",
exec.execution.shares, exec.execution.price);
}
OrderUpdate::CommissionReport(report) => {
println!("Commission: ${}", report.commission);
}
OrderUpdate::Message(msg) => {
println!("Message: {}", msg.message);
}
}
}
});
thread::sleep(std::time::Duration::from_millis(100));
let contract = Contract::stock("AAPL").build();
let order_id = client.order(&contract)
.buy(100)
.market()
.submit()
.expect("order submission failed!");
println!("Order {} submitted", order_id);
thread::sleep(std::time::Duration::from_secs(10));
}
Async Example
use ibapi::prelude::*;
use futures::StreamExt;
#[tokio::main]
async fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).await.expect("connection to TWS failed!");
let mut order_stream = client.order_update_stream().await.expect("failed to create stream");
let monitor_handle = tokio::spawn(async move {
while let Some(update) = order_stream.next().await {
match update {
Ok(OrderUpdate::OrderStatus(status)) => {
println!("Order {} Status: {}", status.order_id, status.status);
println!(" Filled: {}, Remaining: {}", status.filled, status.remaining);
}
Ok(OrderUpdate::OpenOrder(data)) => {
println!("Open Order {}: {} {}",
data.order_id, data.order.action, data.contract.symbol);
}
Ok(OrderUpdate::ExecutionData(exec)) => {
println!("Execution: {} shares @ {}",
exec.execution.shares, exec.execution.price);
}
Ok(OrderUpdate::CommissionReport(report)) => {
println!("Commission: ${}", report.commission);
}
Ok(OrderUpdate::Message(msg)) => {
println!("Message: {}", msg.message);
}
Err(e) => {
eprintln!("Error: {:?}", e);
break;
}
}
}
});
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
let contract = Contract::stock("AAPL").build();
let order_id = client.order(&contract)
.buy(100)
.market()
.submit()
.await
.expect("order submission failed!");
println!("Order {} submitted", order_id);
tokio::time::sleep(tokio::time::Duration::from_secs(10)).await;
monitor_handle.abort();
}
The order update stream provides real-time notifications for:
- OrderStatus: Status changes (Submitted, Filled, Cancelled, etc.)
- OpenOrder: Order details when opened or modified
- ExecutionData: Fill notifications with price and quantity
- CommissionReport: Commission charges for executions
- Message: System messages and notifications
Multi-Threading
The Client can be shared between threads to support concurrent operations. The following example demonstrates valid multi-threaded usage of Client.
use std::sync::Arc;
use std::thread;
use ibapi::prelude::*;
fn main() {
let connection_url = "127.0.0.1:4002";
let client = Arc::new(Client::connect(connection_url, 100).expect("connection to TWS failed!"));
let symbols = vec!["AAPL", "NVDA"];
let mut handles = vec![];
for symbol in symbols {
let client = Arc::clone(&client);
let handle = thread::spawn(move || {
let contract = Contract::stock(symbol).build();
let subscription = client
.realtime_bars(&contract, RealtimeBarSize::Sec5, RealtimeWhatToShow::Trades, TradingHours::Extended)
.expect("realtime bars request failed!");
for bar in subscription {
println!("bar: {bar:?}");
}
});
handles.push(handle);
}
handles.into_iter().for_each(|handle| handle.join().unwrap());
}
Some TWS API calls do not have a unique request ID and are mapped back to the initiating request by message type instead. Since the message type is not unique, concurrent requests of the same message type (if not synchronized by the application) may receive responses for other requests of the same message type. Subscriptions using shared channels are tagged with the SharesChannel trait to highlight areas that the application may need to synchronize.
To avoid this issue, you can use a model of one client per thread. This ensures that each client instance handles only its own messages, reducing potential conflicts:
use std::thread;
use ibapi::prelude::*;
fn main() {
let symbols = vec![("AAPL", 100), ("NVDA", 101)];
let mut handles = vec![];
for (symbol, client_id) in symbols {
let handle = thread::spawn(move || {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, client_id).expect("connection to TWS failed!");
let contract = Contract::stock(symbol).build();
let subscription = client
.realtime_bars(&contract, RealtimeBarSize::Sec5, RealtimeWhatToShow::Trades, TradingHours::Extended)
.expect("realtime bars request failed!");
for bar in subscription {
println!("bar: {bar:?}");
}
});
handles.push(handle);
}
handles.into_iter().for_each(|handle| handle.join().unwrap());
}
In this model, each client instance handles only the requests it initiates, improving the reliability of concurrent operations.
Fault Tolerance
The API will automatically attempt to reconnect to the TWS server if a disconnection is detected. The API will attempt to reconnect up to 30 times using a Fibonacci backoff strategy. In some cases, it will retry the request in progress. When receiving responses via a Subscription, the application may need to handle retries manually, as shown below.
use ibapi::prelude::*;
fn main() {
let connection_url = "127.0.0.1:4002";
let client = Client::connect(connection_url, 100).expect("connection to TWS failed!");
let contract = Contract::stock("AAPL").build();
loop {
let subscription = client
.realtime_bars(&contract, RealtimeBarSize::Sec5, RealtimeWhatToShow::Trades, TradingHours::Extended)
.expect("realtime bars request failed!");
for bar in &subscription {
println!("bar: {bar:?}");
}
if let Some(Error::ConnectionReset) = subscription.error() {
eprintln!("Connection reset. Retrying stream...");
continue;
}
break;
}
}
Contributions
We welcome contributions of all kinds. Feel free to propose new ideas, share bug fixes, or enhance the documentation. If you'd like to contribute, please start by reviewing our contributor documentation.
For questions or discussions about contributions, feel free to open an issue or reach out via our GitHub discussions page.