forked from saniales/golang-crypto-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bot_config.yaml.example
32 lines (32 loc) · 1.01 KB
/
.bot_config.yaml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
exchange_configs:
- exchange: bittrex
public_key: your_bittrex_public_key
secret_key: your_bittrex_secret_key
websocket_enabled: true
- exchange: binance
public_key: your_binance_public_key
secret_key: your_binance_secret_key
websocket_enabled: true
- exchange: bitfinex
public_key: your_bitfinex_public_key
secret_key: your_bitfinex_secret_key
websocket_enabled: true
strategies:
- strategy: your_strategy_name
markets:
- market: market_logical_name
bindings:
- exchange: bittrex
market_name: market_name_on_bittrex
- exchange: binance
market_name: market_name_on_binance
- exchange: bitfinex
market_name: market_name_on_bitfinex
- market: another_market_logical_name
bindings:
- exchange: bittrex
market_name: market_name_on_bittrex
- exchange: binance
market_name: market_name_on_binance
- exchange: bitfinex
market_name: market_name_on_bitfinex