This repository has been archived by the owner on Mar 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.yml
58 lines (55 loc) · 1.62 KB
/
config.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
##########
# General settings
##########
general:
# Amount of time between polls
poll-time: 300
# Delay when we are going to send a request
request-delay: 10
# strategy to use to sell coins
# match-buy: Match highest buy offer(quick sell, least money)
# match-sell: Match lowest sell offer(takes longer, most money)
# undercut-sell: Undercuts lowest sell by max between int(5%), 1 Satoshi
strategy: match-buy
# Target currency(btc/ltc/doge)
target: BTC
##########
# Any number of API keys for us to monitor/use
#
# Format:
# exchangename-nickname:
# key: 'API key'
# secret: 'API secret'
##########
apikeys:
# exchange the keys are for(determines what API we need to use)
coinex-1:
# API key
key: ''
# API secret
secret: ''
##########
# Min sell amounts for any number of coins (OPTIONAL)
# Will not try to make orders when balance is below set amount
#
# Format:
# coin: amount
##########
coinmins:
# require SXC balance >= 1 before trying to sell
SXC: 1
# require DGC balance >= 1 before trying to sell
DGC: 1
# require FST balance >= 1 before trying to sell
FST: 1
# require LOT balance >= 1000 before trying to sell
LOT: 100
##########
# Coins to exclude from our auto-selling (OPTIONAL)
#
# Format: 1 coin per line
# - coin
##########
excludes:
# Do not autosell LTC
- LTC