Skip to content

Commit b787e70

Browse files
committed
Adjust Wrapper to new implementations
1 parent 55237fc commit b787e70

File tree

1 file changed

+22
-17
lines changed

1 file changed

+22
-17
lines changed

README.md

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@
55
[![GitHub release](https://img.shields.io/github/release/saniales/golang-crypto-trading-bot.svg)](https://github.com/saniales/golang-crypto-trading-bot/releases)
66
[![license](https://img.shields.io/github/license/saniales/golang-crypto-trading-bot.svg?maxAge=2592000)](https://github.com/saniales/golang-crypto-trading-bot/LICENSE)
77

8-
9-
A golang implementation of a console-based trading bot for cryptocurrency exchanges.
8+
A golang implementation of a console-based trading bot for cryptocurrency exchanges.
109

1110
## Usage
1211

1312
Download a release or directly build the code from this repository.
13+
1414
``` bash
15-
$ go get github.com/saniales/golang-crypto-trading-bot
15+
go get github.com/saniales/golang-crypto-trading-bot
1616
```
1717

1818
If you need to, you can create a strategy and bind it to the bot:
19+
1920
``` go
2021
import bot "github.com/saniales/golang-crypto-trading-bot/cmd"
2122

@@ -37,13 +38,16 @@ A Fake balance for each coin must be specified for each exchange if simulation m
3738

3839
| Exchange Name | REST Supported | Websocket Support |
3940
| ------------- |------------------ | ----------------- |
40-
| Bittrex | Yes | No |
41-
| Poloniex | Yes | Yes |
42-
| Kraken | Yes (no withdraw) | No |
43-
| Bitfinex | Yes | Yes |
44-
| Binance | Yes | Yes |
41+
| Bittrex | Yes | No |
42+
| Poloniex | Yes | Yes |
43+
| Kraken | Yes (no withdraw) | No |
44+
| Bitfinex | Yes | Yes |
45+
| Binance | Yes | Yes |
46+
| Kucoin | Yes | No |
47+
| HitBtc | Yes | Yes |
48+
49+
## Configuration file template
4550

46-
# Configuration file template
4751
Create a configuration file from this example or run the `init` command of the compiled executable.
4852

4953
``` yaml
@@ -96,13 +100,14 @@ strategies:
96100
market_name: ETCBTC
97101
```
98102
99-
# Donate
103+
## Donate
104+
100105
Feel free to donate:
101106
102-
| METHOD | ADDRESS |
103-
|-------- |-------------------------------------------- |
104-
| Paypal | https://paypal.me/AlessandroSanino |
105-
| BTC | 1DVgmv6jkUiGrnuEv1swdGRyhQsZjX9MT3 |
106-
| XVG | DFstPiWFXjX8UCyUCxfeVpk6JkgaLBSNvS |
107-
| ETH | 0x2fe7bd8a41e91e9284aada0055dbb15ecececf02 |
108-
| USDT | 18obCEVmbT6MHXDcPoFwnUuCmkttLbK5Xo |
107+
| METHOD | ADDRESS |
108+
|-------- |-------------------------------------------- |
109+
| Paypal | https://paypal.me/AlessandroSanino |
110+
| BTC | 1DVgmv6jkUiGrnuEv1swdGRyhQsZjX9MT3 |
111+
| XVG | DFstPiWFXjX8UCyUCxfeVpk6JkgaLBSNvS |
112+
| ETH | 0x2fe7bd8a41e91e9284aada0055dbb15ecececf02 |
113+
| USDT | 18obCEVmbT6MHXDcPoFwnUuCmkttLbK5Xo |

0 commit comments

Comments
 (0)