-
Notifications
You must be signed in to change notification settings - Fork 259
/
config_default.json
109 lines (109 loc) · 2.45 KB
/
config_default.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"language": "en",
"demoMode": true,
"symbol": "BTC/JPY",
"priceMergeSize": 100,
"maxSize": 0.01,
"minSize": 0.01,
"minTargetProfitPercent": 1.0,
"exitNetProfitRatio": 20,
"maxTargetVolumePercent": 50.0,
"iterationInterval": 3000,
"positionRefreshInterval": 5000,
"sleepAfterSend": 5000,
"maxNetExposure": 0.1,
"maxRetryCount": 10,
"orderStatusCheckInterval": 3000,
"stabilityTracker": {
"threshold": 8,
"recoveryInterval": 300000
},
"onSingleLeg": {
"action": "Reverse",
"actionOnExit": "Proceed",
"options": {
"limitMovePercent": 5,
"ttl": 3000
}
},
"analytics": {
"enabled": false,
"plugin": "SimpleSpreadStatHandler.js",
"initialHistory": { "minutes": 30 }
},
"webGateway": {
"enabled": false,
"host": "127.0.0.1",
"openBrowser": true
},
"brokers": [
{
"broker": "Coincheck",
"enabled": true,
"key": "xxxxxx",
"secret": "xxxxxx",
"maxLongPosition": 0.15,
"maxShortPosition": 0.15,
"cashMarginType": "NetOut",
"commissionPercent": 0
},
{
"broker": "Bitflyer",
"enabled": true,
"key": "xxxxxx",
"secret": "xxxxxx",
"maxLongPosition": 0.03,
"maxShortPosition": 0,
"cashMarginType": "Cash",
"commissionPercent": 0,
"noTradePeriods": [["04:00", "04:15"]]
},
{
"broker": "Quoine",
"enabled": true,
"key": "xxxxxx",
"secret": "xxxxxx",
"maxLongPosition": 0.15,
"maxShortPosition": 0.15,
"cashMarginType": "NetOut",
"leverageLevel": 10,
"commissionPercent": 0
},
{
"broker": "Bitbankcc",
"npmPath": "@bitr/bitbankcc",
"enabled": true,
"key": "xxxxxx",
"secret": "xxxxxxx",
"maxLongPosition": 0.03,
"maxShortPosition": 0,
"cashMarginType": "Cash",
"commissionPercent": 0
},
{
"broker": "Btcbox",
"npmPath": "@bitr/btcbox",
"enabled": true,
"key": "xxxxxx",
"secret": "xxxxxxx",
"maxLongPosition": 0.03,
"maxShortPosition": 0,
"cashMarginType": "Cash",
"commissionPercent": 0
}
],
"logging": {
"slack": {
"enabled": false,
"url": "https://hooks.slack.com/services/xxxxxx",
"channel": "#ch1",
"username": "abc",
"keywords": ["error", "profit"]
},
"line": {
"enabled": false,
"token": "TOKEN",
"keywords": ["error", "profit"]
}
}
}