IBKR-API-Rust
IBKR-API-Rust copied to clipboard
Port of Interactive Broker's trading API written in Rust
Hello. When using your library, I receive the following message: ``` Your API version does not support fractional size rules. Please upgrade to a minimum version 163 ``` I'm subscribing...
See [here](https://doc.rust-lang.org/cargo/guide/project-layout.html). At the moment `examples` and tests all `live` under `src`. This also means there is a namespace prefix, `core`, that could potentially be omitted. If they were moved...
I changed the example `contract_samples::simple_future()` for `TSLA` in historical_data_operations_req() like so: ```rs pub fn historical_data_operations_req(&self) -> Result { // Requesting historical data let contract = Contract { symbol: "TSLA".to_string(), sec_type:...
I am trying to get a similar data structure like the [`Ticker` class in the Python ib_sync lib](https://ib-insync.readthedocs.io/api.html?highlight=Ticker#ib_insync.ticker.Ticker) filled. I am looking for something like the output from [this Python...
Edit: So I saw this is already published. I suggest changing the repo name to `twsapi`. I work on docs (make sure all links work) and update `Cargo.toml` & `README.md`...
Some test contract data (pulled from IB's test contracts) are not valid
Currently, tests are manual against a running instance of IB Gateway. Add unit and integration tests that run automatically after building
Thank you for your work, I just simply imported your crate and used this demo code you provided: It placed an order of 200 shares of BMW, now I know...