-
Notifications
You must be signed in to change notification settings - Fork 2
/
config_example.hjson
34 lines (34 loc) · 1.42 KB
/
config_example.hjson
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
{
"instances": [
{
"id": 1,
"name": "your_description",
"ssh_host": "", # IP
"ssh_port": "",
"ssh_user": "",
"ssh_pass": "", # keyfile has priority
"ssh_keyfile": "",
"tmux_window_name": "directionalscalper",
"tmux_pane_name": "DS",
"venv_start_command": "", # empty to disable. i.e: "source myenv/bin/activate" or "conda activate myenv"
"ds_location": "", # full path
"ds_config_file": "", # full path
"ds_start_command": "python3.11 multi_bot.py --exchange bybit --account_name bybit01 --strategy basicgridbufferedqs"
},
{
"id": 2,
"name": "your_description",
"ssh_host": "", # IP
"ssh_port": "",
"ssh_user": "",
"ssh_pass": "", # keyfile has priority
"ssh_keyfile": "",
"tmux_window_name": "directionalscalper",
"tmux_pane_name": "DS",
"venv_start_command": "", # empty to disable. i.e: "source myenv/bin/activate" or "conda activate myenv"
"ds_location": "", # full path
"ds_config_file": "", # full path
"ds_start_command": "python3.11 multi_bot.py --exchange bybit --account_name bybit01 --strategy basicgridbufferedqs"
}
]
}