-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.sample
99 lines (99 loc) · 2.16 KB
/
config.json.sample
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
{
"language": "en",
"debug": false,
"demoMode": false,
"symbol": "BTC/JPY",
"priceMergeSize": 0.001,
"maxSize": 0.3,
"minSize": 0.0001,
"minTargetProfit": 1,
"minExitTargetProfit": 20,
"minExitTargetProfitPercent": 0.1,
"minTargetProfitPercent": 0.03,
"exitNetProfitRatio": 20,
"maxTargetProfit": 1000,
"maxTargetVolumePercent": 100,
"iterationInterval": 1500,
"positionRefreshInterval": 5000,
"sleepAfterSend": 5000,
"maxNetExposure": 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": "Bitflyer",
"enabled": true,
"maxLongPosition": 0.3,
"maxShortPosition": 0.3,
"cashMarginType": "Cash",
"commissionPercent": 0,
"noTradePeriods": [["04:00", "04:15"]]
},
{
"broker": "Coincheck",
"enabled": true,
"maxLongPosition": 0.3,
"maxShortPosition": 0.3,
"cashMarginType": "Cash",
"commissionPercent": 0
},
{
"broker": "Bitbank",
"enabled": true,
"maxLongPosition": 0.3,
"maxShortPosition": 0.3,
"cashMarginType": "Cash",
"commissionPercent": 0
},
{
"broker": "Btcbox",
"enabled": true,
"maxLongPosition": 0.3,
"maxShortPosition": 0.3,
"cashMarginType": "Cash",
"commissionPercent": 0
},
{
"broker": "Zaif",
"enabled": true,
"maxLongPosition": 0.3,
"maxShortPosition": 0.3,
"cashMarginType": "Cash",
"commissionPercent": 0
}
],
"logging": {
"slack": {
"enabled": false,
"channel": "#ch1",
"username": "abc",
"keywords": ["error", "profit"]
},
"line": {
"enabled": false,
"keywords": ["error", "profit"]
}
}
}