-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.json
61 lines (61 loc) · 1.52 KB
/
conf.json
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
{
"user_data": {
"binance": {
"bnkey": "",
"bnsecret": ""
},
"bittrex": {
"btkey": "",
"btsecret": ""
},
"comm": {
"telegram": {
"bot_toekn": "",
"tele_user_id": ""
}
},
"end_time": 1.0,
"echo_level": 0
},
"bot_settings": {
"active_bots_file": "active_bots.json",
"all_pids_file": "all_pids.json",
"pids_log_folder": "logs",
"strategies_dir": "strategies",
"debug": false,
"db": {
"hostname": "localhost",
"username": "root",
"password": "",
"db_name": "php_crypto_bot"
}
},
"bot_instances_on_start": {
"binance_pSARSwitch_vol700":{
"exchange": "binance",
"strategy": ["pSARswitchBBandsVol.json"],
"min_vol": 1000,
"simulator": false,
"ignore_coins": ["DOGE","RDD","BTT"],
"include_coins": ["XLM"],
"timeframe": "5m",
"max_open_signals": "2",
"max_btc_per_trade": "0.001",
"sell_only_mode": true,
"backtesting": false
},
"bittrex_pSARSwitch_vol100":{
"exchange": "bittrex",
"strategy": ["pSARswitchBBandsVol.json"],
"min_vol": 300,
"simulator": true,
"ignore_coins": ["DOGE","RDD","BTT"],
"include_coins": ["XLM"],
"timeframe": "5m",
"max_open_signals": "2",
"max_btc_per_trade": "0.001",
"sell_only_mode": false,
"backtesting": false
}
}
}