ibapi 2.11.2

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
#![allow(clippy::uninlined_format_args)]
//! Example of getting account summary asynchronously
//!
//! To run this example:
//! ```bash
//! cargo run --features async --example async_account_summary
//! ```
//!
//! Make sure TWS or IB Gateway is running with API connections enabled

use ibapi::accounts::types::AccountGroup;
use ibapi::prelude::*;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    env_logger::init();

    println!("Connecting to IB Gateway...");

    let client = Client::connect("127.0.0.1:4002", 100).await?;
    println!("Connected successfully!");

    println!("\nRequesting account summary...");
    let tags = &[
        AccountSummaryTags::ACCOUNT_TYPE,
        AccountSummaryTags::NET_LIQUIDATION,
        AccountSummaryTags::TOTAL_CASH_VALUE,
        AccountSummaryTags::BUYING_POWER,
    ];

    let mut subscription = client.account_summary(&AccountGroup("All".to_string()), tags).await?;

    while let Some(result) = subscription.next().await {
        match result {
            Ok(update) => match update {
                AccountSummaryResult::Summary(summary) => {
                    if summary.currency.is_empty() {
                        println!("Account {}: {} = {}", summary.account, summary.tag, summary.value);
                    } else {
                        println!("Account {}: {} = {} {}", summary.account, summary.tag, summary.value, summary.currency);
                    }
                }
                AccountSummaryResult::End => {
                    println!("Account summary complete.");
                    break;
                }
            },
            Err(e) => {
                eprintln!("Error receiving account summary: {e:?}");
                break;
            }
        }
    }

    Ok(())
}