-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathconfig.json
More file actions
32 lines (32 loc) · 716 Bytes
/
config.json
File metadata and controls
32 lines (32 loc) · 716 Bytes
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
{
"$schema": "./config.schema.json",
"bot_name": "hyperview",
"timeframe": "1h",
"session": "extended",
"mode": "long",
"strategy": "adx_stochastic",
"initial_capital": 100000,
"data_dir": "data",
"output_dir": "results",
"strategy_path": "strategy",
"dataformat": "csv",
"pairlist": [
"NASDAQ:NFLX",
"NASDAQ:TSLA",
"COINBASE:BTCUSD",
"COINBASE:ETHUSD"
],
"optimization": {
"n_trials": 150,
"objective": "net_profit_pct",
"top_n": 10,
"sl_range": {
"min": 1.0,
"max": 15.0
},
"tp_range": {
"min": 1.0,
"max": 15.0
}
}
}