A small Python CLI application for placing USDT-M Futures orders on Binance Futures Testnet. The bot uses direct REST calls against: Register for Binance Futures Testnet and create API credentials.
trading_bot/ ├── bot/ │ ├── __init__.py # Package init │ ├── client.py # Binance REST API wrapper (direct HTTP, HMAC signing) │ ├── orders.py # Order placement logic & response formatting │ ├── ...
Ever wonder how to use a trading bot on an exchange like Binance or Binance.US? Afraid the process is overly technical? Thankfully, it doesn’t have to be. We’ll use the bot created by Coinrule as an ...