forked from whittlem/pycryptobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.example
40 lines (40 loc) · 1.04 KB
/
config.json.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
{
"binance" : {
"api_url" : "https://api.binance.com",
"api_key" : "",
"api_secret" : "",
"config" : {
"base_currency" : "BTC",
"quote_currency" : "GBP",
"granularity" : "1h",
"live" : 0,
"sellatloss" : 0,
"disablebullonly" : 1,
"disablebuyobv" : 1,
"disablebuyelderray" : 1,
"disablelog" : 1,
"disabletracker" : 1
}
},
"coinbasepro" : {
"api_url" : "https://api.pro.coinbase.com",
"api_key" : "",
"api_secret" : "",
"api_passphrase" : "",
"config" : {
"base_currency" : "BTC",
"quote_currency" : "GBP",
"live" : 1,
"sellatloss" : 0,
"disablebullonly" : 1,
"disablebuyobv" : 1,
"disablebuyelderray" : 1,
"disablelog" : 1,
"disabletracker" : 1
}
},
"telegram" : {
"token" : "",
"client_id" : ""
}
}