A Rust-based trading bot that operates across dual channels on cryptocurrency markets.
- Supports both mainnet and testnet environments
- Dual channel trading strategy
- Built in Rust for high performance and reliability
- Clone the repository
git clone https://github.com/yourusername/dual-channel-bot.git
cd dual-channel-bot
- Configure your environment variables (create a
.env
file):
PRIVATE_KEY=
USER_ADDRESS=
- Build the bot
cargo build --release
- Run the bot
# Run on testnet (default)
cargo run
# Run on mainnet
cargo run -- --mainnet
# Run with custom size
cargo run -- --size 50.0
# Run with different symbol
cargo run -- --symbol ETH
# Run with all options
cargo run -- --mainnet --size 50.0 --symbol ETH
The bot can be configured with the following parameters:
- Network selection (mainnet/testnet)
- Channel size
- Asset selection
MIT License
Trading cryptocurrencies involves risk. This bot is provided as-is with no guarantees. Use at your own risk.