forked from zzzzlzzzz/MarketMaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
50 lines (50 loc) · 1.18 KB
/
settings.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"logging": {
"version": 1,
"disable_existing_loggers": false,
"loggers": {
"MarketMakerBot": {
"level": "DEBUG",
"handlers": ["console", "file"]
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"stream": "ext://sys.stdout",
"formatter": "default"
},
"file": {
"class": "logging.handlers.TimedRotatingFileHandler",
"filename": "bot.log",
"when": "midnight",
"utc": true,
"formatter": "default"
}
},
"formatters": {
"default": {
"format": "%(asctime)s [%(levelname)s] %(module)s:%(name)s:%(funcName)s:%(lineno)d: %(message)s",
"datefmt": "%Y-%m-%d %H:%M:%S"
}
}
},
"exchange": {
"id": "binance",
"apiKey": "",
"secret": "",
"uid": "",
"password": "",
"timeout": 10000
},
"bot_behaviour_update_period": 10,
"trade_symbol": "LTC/BTC",
"trade_amount": 5,
"minimal_profit": 0.021,
"maximal_profit": 0.033,
"orders_count": 4,
"accumulate": "all",
"request_balances": true,
"nonce_as_time": true,
"stop_after_pump": true
}