Skip to content

Reference

Technical reference documentation for Arbiter-Bot.

CLI

Configuration

Quick Reference

Running the Engine

# Normal operation
cargo run --manifest-path arbiter-engine/Cargo.toml

# Check connectivity only
cargo run --manifest-path arbiter-engine/Cargo.toml -- --check-connectivity

# Dry run mode (no real orders)
cargo run --manifest-path arbiter-engine/Cargo.toml -- --dry-run

Testing

# Run all tests
cargo test --manifest-path arbiter-engine/Cargo.toml

# Run specific test
cargo test --manifest-path arbiter-engine/Cargo.toml test_happy_path

# Run with output
cargo test --manifest-path arbiter-engine/Cargo.toml -- --nocapture