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
#[cfg(feature = "async")]
#[tokio::test]
async fn test_wsh_metadata_async() {
    // Note: This is a basic compile test to ensure the async implementation works
    // In real usage, you would connect to a live TWS instance

    // This test just ensures the async code compiles and the API is usable
    async {
        // Example usage (would fail without real connection):
        // use ibapi::wsh::wsh_metadata;
        // use ibapi::Client;
        // let client = Client::connect("127.0.0.1:4002", 100).await?;
        // let metadata = wsh_metadata(&client).await?;
        // println!("WSH Metadata: {metadata:?}");
        Ok::<(), ibapi::Error>(())
    }
    .await
    .unwrap();
}

#[cfg(feature = "async")]
#[tokio::test]
async fn test_wsh_event_data_async() {
    // This test just ensures the async code compiles and the API is usable
    async {
        // Example usage (would fail without real connection):
        // let client = Client::connect("127.0.0.1:4002", 100).await?;
        // let event_data = wsh_event_data_by_contract(
        //     &client,
        //     12345,
        //     Some(date!(2024-01-01)),
        //     Some(date!(2024-12-31)),
        //     Some(100),
        //     Some(AutoFill {
        //         competitors: true,
        //         portfolio: false,
        //         watchlist: false,
        //     })
        // ).await?;
        // println!("WSH Event Data: {event_data:?}");
        Ok::<(), ibapi::Error>(())
    }
    .await
    .unwrap();
}