-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathconfig.default.json
More file actions
52 lines (52 loc) · 1.22 KB
/
config.default.json
File metadata and controls
52 lines (52 loc) · 1.22 KB
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
{
"api": {
"apiKey": "",
"secretKey": ""
},
"symbols": {
"ASTERUSDT": {
"longVolumeThresholdUSDT": 1000,
"shortVolumeThresholdUSDT": 2500,
"tradeSize": 0.69,
"shortTradeSize": 0.69,
"maxPositionMarginUSDT": 200,
"leverage": 10,
"tpPercent": 1,
"slPercent": 20,
"orderType": "LIMIT",
"forceMarketEntry": false,
"vwapProtection": true,
"vwapTimeframe": "5m",
"vwapLookback": 200,
"useThreshold": false,
"thresholdTimeWindow": 60000,
"thresholdCooldown": 30000
}
},
"global": {
"riskPercent": 90,
"paperMode": true,
"positionMode": "HEDGE",
"maxOpenPositions": 5,
"useThresholdSystem": false,
"server": {
"dashboardPassword": "admin",
"dashboardPort": 3000,
"websocketPort": 8080,
"useRemoteWebSocket": false,
"websocketHost": null
},
"rateLimit": {
"maxRequestWeight": 2400,
"maxOrderCount": 1200,
"reservePercent": 30,
"enableBatching": true,
"queueTimeout": 30000,
"enableDeduplication": true,
"deduplicationWindowMs": 1000,
"parallelProcessing": true,
"maxConcurrentRequests": 3
}
},
"version": "1.1.0"
}