-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.toml
88 lines (72 loc) · 2.02 KB
/
config.toml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[settings]
debug = false
# we only implemented file as a backend for now
persistence = "file"
# if a file exists look for the last entry, get the timestamp and start pulling from that timestamp instead
# of the whole period
append_file = true
# list of proxy servers to rotate through
proxies = [
""
]
# respect the exchanges rate limit
# set to true if you're working without proxies so you don't run into rate limit errors
ratelimit = false
# how many ohlcv candles to pull in one row ( can be overwritten per exchange )
default_limit = 200
[exchanges]
# some example configurations
# [exchanges.binance]
# filter_symbols = ["BTC/USDT"]
# filter_resolutions = []
# since = "2017-01-01 00:00:00"
# until = "2019-06-26 00:00:00"
# limit = 500
# [exchanges.bitmex]
# filter_symbols = ["BTC/USD"]
# filter_resolutions = ["1d"]
# since = "2017-01-01 00:00:00"
# until = "2019-06-26 00:00:00"
# limit = 1000
# [exchanges.okex3]
# filter_symbols = ["BTC/USDT"]
# filter_resolutions = ["30m"]
# since = "2019-09-15 00:00:00"
# until = "2019-09-22 00:00:00"
# limit = 500
# [exchanges.bitmex]
# filter_symbols = []
# filter_resolutions = []
# since = "2019-07-18 00:00:00"
# until = "2019-08-18 00:00:00"
# limit = 1000
# [exchanges.kraken]
# filter_symbols = [
# "BTC/USD"
# ]
# filter_resolutions = ["1h"]
# since = "2018-01-01 00:00:00"
# until = "2019-05-29 00:00:00"
# limit = 200
# [exchanges.huobipro]
# filter_symbols = [
# "BTC/USDT"
# ]
# filter_resolutions = ["1h"]
# since = "2018-01-01 00:00:00"
# until = "2019-05-29 00:00:00"
# limit = 2000
# [exchanges.bitfinex2]
# filter_symbols = [
# "BTC/USD"
# ]
# filter_resolutions = ["1m"]
# since = "2018-01-01 00:00:00"
# until = "2019-05-29 00:00:00"
# limit = 5000
# [exchanges.gdax]
# filter_symbols = ["BTC/USD"]
# filter_resolutions = ["1h"]
# since = "2018-01-01 00:00:00"
# until = "2019-05-29 00:00:00"
# limit = 200