-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.ini
65 lines (48 loc) · 1.57 KB
/
conf.ini
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
# Environment Config
# store your secrets and config variables in here
# note: conf.ini is a shell file so there can’t be spaces around =
############################################
##### Output UI Settings
############################################
maxRows=40
############################################
##### Storage settings
############################################
mongoHost=localhost
mongoPort=27017
mongoDb=imageSaver
useMongo=true
#### These can go in .keys if preferred, since this file may change on the repo.
#mongoUser=
#mongoPass=
##################################
##### Logging Settings
##################################
## These are inactive if useMongo = false
# Calculated arbitrage opportunities for every tick
arbitrageTicksTable=ticks_arbitrage
# Raw ticks coming from the websocket stream. Usually a tick every 1s.
rawTicksTable=ticks_raw
############################################
##### Exchange Settings
############################################
#### Which exchange are we connecting to? Currenly only Binance is supported.
activeExchange=binance
#### Binance REST Settings
### Used for controlling & checking orders
restTimeout=15000
restRecvWindow=10000
restBeautify=false
#### these are paths we can step through
### The starting point
binanceStartingPoint=BTC
### The possible currencies we step via
binanceColumns=BNB,ETH,USDT
#####################################
#### Calculation Settings ##########
##################################
# Pair ranking
pairRankerTable=pair_ranking
minimalProfit=1.02
#default 15 minutes, in MS
pairTimer=900000