-
Notifications
You must be signed in to change notification settings - Fork 857
/
Copy pathconfig.py-example
55 lines (46 loc) · 1.08 KB
/
config.py-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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
markets = [
"BitFlyerEUR",
"BitFlyerUSD",
"BitfinexEUR",
"BitfinexUSD",
"BitstampEUR",
"BitstampUSD",
"CampBXUSD",
"CEXEUR",
"CEXUSD",
"GDAXEUR",
"GDAXUSD",
"GeminiUSD",
"KrakenEUR",
"KrakenUSD",
"OKCoinCNY",
"PaymiumEUR",
]
# observers if any
# ["Logger", "DetailedLogger", "TraderBot", "TraderBotSim", "HistoryDumper", "Emailer"]
observers = ["Logger"]
market_expiration_time = 120 # in seconds: 2 minutes
refresh_rate = 60
#### Trader Bot Config
# Access to Private APIs
paymium_username = "FIXME"
paymium_password = "FIXME"
paymium_address = "FIXME" # to deposit btc from markets / wallets
bitstamp_username = "FIXME"
bitstamp_password = "FIXME"
# SafeGuards
max_tx_volume = 10 # in BTC
min_tx_volume = 1 # in BTC
balance_margin = 0.05 # 5%
profit_thresh = 1 # in EUR
perc_thresh = 2 # in %
#### Emailer Observer Config
smtp_host = "FIXME"
smtp_login = "FIXME"
smtp_passwd = "FIXME"
smtp_from = "FIXME"
smtp_to = "FIXME"
#### XMPP Observer
xmpp_jid = "[email protected]"
xmpp_password = "FIXME"
xmpp_to = "[email protected]"