cTrader FIX API in Rust
This repository is an unofficial Rust implementation of the FIX API in Rust for the cTrader trading platform
Built using the async runtime library, it provides an asynchronous and simple interface for interacting with the cTrader platform through the Financial Information eXchange (FIX) protocol.
This project is now ready for use. However, please note that it is still under active development and bugs may exist.
Cargo Features
This crate allows you to use tokio
runtime featured in async-std
by specifying features in your Cargo.toml
. By default, it uses async-std
with the attributes
feature.
To use the crate with the default configuration, add the following line to your Cargo.toml
:
toml
ctrader-fix = "0.4.4"
To use a specific Tokio configuration, specify the feature like this:
toml
ctrader-fix = { version = "0.4.4", features = ["tokio1"] }
Available Features
- default: Uses
async-std
with the unstable
feature.
- tokio1: Uses
async-std
with the unstable
and tokio1
features.
- tokio02: Uses
async-std
with the unstable
and tokio02
features.
- tokio03: Uses
async-std
with the unstable
and tokio03
features.
Please note that you should only enable one of these features at a time.
Progress
Below is the current progress on the development of this project:
- Base FixApi implementation :whitecheckmark:
- Base requests :whitecheckmark:
- Example code :whitecheckmark:
- Connect :whitecheckmark:
- Send logon :whitecheckmark:
- Send logout :whitecheckmark:
- Disconnect :whitecheckmark:
- Handle responses :whitecheckmark:
- Implement response structure :whitecheckmark:
- Implement response handler - notify :whitecheckmark:
- Add Error struct using
thiserror
:whitecheckmark:
- MarketClient :whitecheckmark:
- Internal Market data Callback :whitecheckmark:
- Parsing response message :whitecheckmark:
- Subscribe the symbol for spot :whitecheckmark:
- Implement the check the request has accepted method :whitecheckmark:
- Test for parsing market datas :whitecheckmark:
- Unsubscribe the symbol for spot :whitecheckmark:
- Subscribe the symbol for depth :whitecheckmark:
- Unsubscribe the symbol for depth :whitecheckmark:
- Parsing the spot market data in callback :whitecheckmark:
- Add quote spot data method :whitecheckmark:
- Parsing the depth market data in callback :whitecheckmark:
- Parsing the incremental market data in callback :whitecheckmark:
- Market data handler in example code :whitecheckmark:
- Fix callback method for subscription :whitecheckmark:
- FIXED identify with message type and id :whitecheckmark:
- FIXED the issue of heartbeat :whitecheckmark:
- TradeClient :whitecheckmark:
- Add fetch methods :whitecheckmark:
- Implement fetchsecuritylist to fetch the security list :whitecheckmark:
- Implement fetchpositions :whitecheckmark:
- Implement fetchallorderstatus :whitecheckmark:
- Implement newmarketorder :whitecheckmark:
- Implement newlimitorder :whitecheckmark:
- Implement newstoporder :whitecheckmark:
- Implement parsefunc for ExecutionReport :whitecheckmark:
- Implement cancelorder :whitecheckmark:
- Implement replaceorder :whitecheckmark:
- Implement adjustpositionsize :whitecheckmark:
- Implement closeposition :whitecheckmark:
- Added timeout in request methods :whitecheckmark:
- FIXED issue unhandled trade message (deadlock) :whitecheckmark:
- Add handler for trade execution :whitecheckmark:
- FIXED data parsing issue in Socket :whitecheckmark:
- Removed unnecessary arguments for new order methods :whitecheckmark:
License
This project is licensed under the MIT License - see the LICENSE file for details.