rodrigo-brito / ninjabot
- понедельник, 24 мая 2021 г. в 00:28:29
A fast cryptocurrency bot implemented in Go
A fast cryptocurrency bot framework implemented in Go. Ninjabot permits users to create and test custom strategies for spot markets..
go get -u github.com/rodrigo-brito/ninjabot
Check example directory:
To download historical data you can download ninjabot CLI from release page
ninjabot download --pair BTCUSDT --timeframe 1d --days 30 --output ./btc.csv
go run example/backtesting/main.go
Output:
[SETUP] Using paper wallet
[SETUP] Initial Portfolio = 10000.000000 USDT
+---------+--------+-----+------+--------+--------+------------+
| PAIR | TRADES | WIN | LOSS | % WIN | PAYOFF | PROFIT |
+---------+--------+-----+------+--------+--------+------------+
| ETHUSDT | 19 | 9 | 10 | 47.4 % | 6.975 | 6334.1268 |
| BTCUSDT | 17 | 6 | 11 | 35.3 % | 7.734 | 4803.0181 |
+---------+--------+-----+------+--------+--------+------------+
| TOTAL | 36 | 15 | 21 | 41.7 % | 7.333 | 11137.1449 |
+---------+--------+-----+------+--------+--------+------------+
--------------
WALLET SUMMARY
--------------
0.000000 ETH
0.000000 BTC
21137.144920 USDT
--------------
START PORTFOLIO = 10000 USDT
FINAL PORTFOLIO = 21137.14492013396 USDT
GROSS PROFIT = 11137.144920 USDT (111.37%)
MARKET CHANGE = 396.71%
--------------
Chart available at http://localhost:8080
Live Trading
Backtesting
Bot CLI - Utilities to support studies
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.