#fix #trading #api #ctrade

ctrader-fix

A rust implementation of the cTrader FIX API

22个版本

0.5.3 2024年5月15日
0.5.2 2024年4月19日
0.4.11 2023年11月3日
0.4.10 2023年9月19日
0.3.10 2023年5月16日

#13 in 财务

Download history • Rust 包仓库 3/week @ 2024-04-25 • Rust 包仓库 137/week @ 2024-05-09 • Rust 包仓库 49/week @ 2024-05-16 • Rust 包仓库 7/week @ 2024-05-23 • Rust 包仓库 4/week @ 2024-05-30 • Rust 包仓库 7/week @ 2024-06-06 • Rust 包仓库 2/week @ 2024-06-13 • Rust 包仓库

1,479 monthly downloads
Used in quant-suite

MIT license

125KB
3K SLoC

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

ctrader-fix = "0.5"

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

ctrader-fix = { version = "0.5", 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 Records

For details on the progress achieved, check the PROGRESS.md file.

  • quant-suite link: Aimed at creating tools for auto-trading, back-testing, and market analysis.

License

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

Dependencies

~7–18MB
~253K SLoC