-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.example.json
44 lines (44 loc) · 1015 Bytes
/
config.example.json
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
{
"API" : [
{
"Key" : "API_KEY",
"Secret" : "API_SECRET",
"Passphrase" : "PASSPHRASE",
"API-URL" : "https://api.pro.coinbase.com"
}
],
"Schedule" : [
{
"Scheduled-Run" : "weekday",
"Day" : "thursday",
"Time" : "23:13",
"Repeat-Time" : 10
}
],
"Funding" : [
{
"Enable-Funding" : true,
"Currency" : "USD",
"Max-Fund" : 50,
"Fund-Source" : "default"
}
],
"Crypto" : [
{
"Buy-Pair" : "BTC-USD",
"Buy-Amount" : 20
},
{
"Buy-Pair" : "ETH-USD",
"Buy-Amount" : 30
}
],
"Alerts" : [
{
"Alert-Channel" : "discord",
"Discord-Webhook" : "DISCORD_WEBHOOK_URL",
"Pushover-API-Token": "PUSHOVER_API_TOKEN",
"Pushover-User-Key": "PUSHOVER_USER_KEY"
}
]
}