cTrader FIX API in Rust

This project is currently in active development and is not yet ready for production use.

This is a Rust implementation of the FIX API for the cTrader trading platform. It's built using the async-std library, providing an asynchronous and simple interface for interacting with the cTrader platform through the Financial Information eXchange (FIX) protocol.

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"

To use a specific Tokio configuration, specify the feature like this:

toml ctrader-fix = { version = "0.4", features = ["tokio1"] }

Available Features

Please note that you should only enable one of these features at a time.

To-Do

License

This project is licensed under the MIT License - see the LICENSE file for details.