Aggregates order book data from multiple exchanges.
Install and configure rustup:
# Install
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Configure
source ~/.cargo/envConfigure the Rust toolchain to default to the latest stable version:
rustup default stable
rustup updateGreat! Now your Rust environment is ready!
git clone https://github.com/salman01zp/order-book-aggregator
cd order-book-aggregatorcp .env.example .envcargo build --releaseRun with default quantity 10:
./target/release/order-book-aggregator Run with custom quantity:
./target/release/order-book-aggregator --qty 5cargo test