A fast cryptocurrency and stock trading bot framework implemented in Go. Azbot permits users to create and test custom strategies for spot and future markets.
DISCLAIMER |
---|
This software is for educational purposes only. Do not risk money which you are afraid to lose. USE THE SOFTWARE AT YOUR OWN RISK. THE AUTHORS AND ALL AFFILIATES ASSUME NO RESPONSIBILITY FOR YOUR TRADING RESULTS. |
go mod tidy
make clean
make
- Pre-build binaries in release page
- Or with
go install github.com/ezquant/azbot/cmd/azbot@latest
Check examples directory:
- Paper Wallet (Live Simulation)
- Backtesting (Simulation with historical data)
- Real Account (Binance)
To download historical data you can download azbot CLI from:
# Use SOCKS5 proxy, if needed
export HTTPS_PROXY="socks5://127.0.0.1:1081"
# Download candles of BTCUSDT to CSV file (Last 30 days, timeframe 1D)
./dist/bin/azbot download --pair BTCUSDT --timeframe 1d --days 30 --output ./testdata/BTCUSDT-5m.csv
Backtesting a custom strategy from examples directory:
./dist/bin/azbot backtest
Output:
time="2025-03-25 18:02" level=info msg="[SETUP] Using paper wallet"
time="2025-03-25 18:02" level=info msg="[SETUP] Initial Portfolio = 10000.000000 USDT"
100% |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| (8626/8626, 226268 it/s)
+---------+--------+-----+------+--------+--------+-----+----------+-----------+
| PAIR | TRADES | WIN | LOSS | % WIN | PAYOFF | SQN | PROFIT | VOLUME |
+---------+--------+-----+------+--------+--------+-----+----------+-----------+
| BTCUSDT | 14 | 6 | 8 | 42.9 % | 5.929 | 1.5 | 13511.66 | 448030.05 |
| ETHUSDT | 9 | 6 | 3 | 66.7 % | 3.407 | 1.3 | 21748.41 | 407769.64 |
+---------+--------+-----+------+--------+--------+-----+----------+-----------+
| TOTAL | 23 | 12 | 11 | 52.2 % | 4.942 | 1.4 | 35260.07 | 855799.68 |
+---------+--------+-----+------+--------+--------+-----+----------+-----------+
-- FINAL WALLET --
0.0000 BTC = 0.0000 USDT
0.0000 ETH = 0.0000 USDT
45260.0735 USDT
----- RETURNS -----
START PORTFOLIO = 10000.00 USDT
FINAL PORTFOLIO = 45260.07 USDT
GROSS PROFIT = 35260.073493 USDT (352.60%)
MARKET CHANGE (B&H) = 407.09%
------ RISK -------
MAX DRAWDOWN = -11.76 %
------ VOLUME -----
BTCUSDT = 448030.05 USDT
ETHUSDT = 407769.64 USDT
TOTAL = 855799.68 USDT
-------------------
Chart available at http://localhost:8080
Binance Spot | Binance Futures | |
---|---|---|
Order Market | 🆗 | 🆗 |
Order Market Quote | 🆗 | |
Order Limit | 🆗 | 🆗 |
Order Stop | 🆗 | 🆗 |
Order OCO | 🆗 | |
Backtesting | 🆗 | 🆗 |
-
Backtesting
- Order Limit, Market, Stop Limit, OCO
- Load Feed from CSV
- Load Feed from TDX local files (new)
- Load Feed from Redis DB (new)
-
Paperwallet
- Paper Wallet (Live Trading with fake wallet)
- Load Feed from Binance
- Load Feed from TDX remote API (new)
- Load Feed from CTP broker (new)
-
Bot Utilities
- CLI to download historical data
- Plot (Candles + Sell / Buy orders, Indicators)
- Telegram Controller (Status, Buy, Sell, and Notification)
- Heikin Ashi candle type support
- Trailing stop tool
- In app order scheduler
-
Strategies
- Emacross
- Ocosell
- Trailingstop
- Turtle
- Mean Reversion (new)
- DCAOnSteroids (new)
- Diamondhands (new)
- RL-PPO (new)
-
Others
- Include Web UI Controller
- Include more chart indicators
- Docs
- config file for strategy parameters (new)
- Strategy parameter optimizer (new)
- Docker support (new)
Currently, we only support Binance exchange. If you want to include support for other exchanges, you need to implement a new struct
that implements the interface Exchange
. You can check some examples in exchange directory.
Address | |
---|---|
BTC | 3EKTNjKNCmBqUZUZMFCuzpZkx7cna4GQ4S |
ETH | 0x0ba94169c2315635f2d66de6a53e69879b99be03 |
The project was greatly inspired by: https://github.com/rodrigo-brito/ninjabot