ibapi 2.11.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
//! Pnl Single example
//!
//! # Usage
//!
//! ```bash
//! cargo run --features sync --example pnl_single
//! ```

use clap::{arg, Command};
use ibapi::accounts::types::{AccountId, ContractId};
use ibapi::client::blocking::Client;

fn main() {
    env_logger::init();

    let matches = Command::new("pnl_single")
        .about("Gets realtime profit and loss updates of single contract")
        .arg(arg!(--connection_url <VALUE>).default_value("127.0.0.1:4002"))
        .arg(arg!(--account <ACCOUNT>).required(true))
        .arg(arg!(--contract_id <CONTRACT>).required(true))
        .get_matches();

    let gateway_url = matches.get_one::<String>("connection_url").expect("connection_string is required");
    let account = matches.get_one::<String>("account").expect("account is required");
    let contract_id = matches.get_one::<String>("contract_id").expect("contract_id is required");
    let contract_id = contract_id.parse::<i32>().expect("invalid number");

    let client = Client::connect(gateway_url, 919).expect("connection failed");

    let subscription = client
        .pnl_single(&AccountId(account.clone()), ContractId(contract_id), None)
        .expect("pnl single request failed");

    // Get next item non-blocking
    if let Some(pnl) = subscription.try_next() {
        println!("non-blocking PnL single: {pnl:?}");
    }

    // Consume items blocking for next
    if let Some(pnl) = subscription.next() {
        println!("PnL single: {pnl:?}");

        // After processing items subscription could be cancelled.
        subscription.cancel();
    }
}