wboayue / rust-ibapi

An implementation of the Interactive Brokers API for Rust
MIT License
45 stars 21 forks source link

Add client ID param #73

Closed wboayue closed 1 year ago

wboayue commented 1 year ago

Pass client id as separate parameter.

was

let client = Client::connect("localhost:4002:100")?;

now

let client = Client::connect("localhost:4002", 100)?;