-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
58 lines (58 loc) · 1.25 KB
/
Copy pathconfig.json.example
File metadata and controls
58 lines (58 loc) · 1.25 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
53
54
55
56
57
58
{
"traders": [
{
"id": "binance_deepseek",
"name": "Binance Quant",
"enabled": true,
"exchange": "binance",
"margin_type": "isolated",
"binance_api_key": "your_binance_api_key",
"binance_secret_key": "your_binance_secret_key",
"initial_balance": 50,
"scan_interval_minutes": 2,
"quant_config": {
"allow_short": true,
"max_long_positions": 2,
"max_short_positions": 1,
"position_size_pct": 0.12,
"min_signal_score": 4,
"stop_loss_atr_multiplier": 1.3,
"take_profit_atr_multiplier": 3.2,
"risk_reward": 2.8,
"min_hold_minutes": 15,
"cooldown_minutes": 2
}
}
],
"leverage": {
"btc_eth_leverage": 5,
"altcoin_leverage": 5
},
"use_default_coins": true,
"default_coins": [
"BTCUSDT",
"BTCUSDC",
"ETHUSDT",
"ETHUSDC",
"SOLUSDT",
"BNBUSDT",
"XRPUSDT",
"DOGEUSDT",
"ADAUSDT",
"AVAXUSDT",
"TRXUSDT",
"LINKUSDT",
"DOTUSDT",
"ATOMUSDT",
"LTCUSDT",
"ARBUSDT",
"OPUSDT",
"HYPEUSDT"
],
"coin_pool_api_url": "",
"oi_top_api_url": "",
"api_server_port": 8080,
"max_daily_loss": 10.0,
"max_drawdown": 20.0,
"stop_trading_minutes": 60
}