Skip to content

Commit

Permalink
Clean up conf.ini for more control over history logging (#8).
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiago Siebler committed Jan 2, 2018
1 parent 0dbff5d commit 891159f
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions conf.ini
Original file line number Diff line number Diff line change
@@ -1,30 +1,55 @@
# Environment Config

# store your secrets and config variables in here
# only invited collaborators will be able to see your .env values
# note: .env is a shell file so there can’t be spaces around =
# note: conf.ini is a shell file so there can’t be spaces around =

############################################
##### Output UI Settings
############################################

##### Output Settings
maxRows=40

############################################
##### Storage settings
############################################

mongoHost=localhost
mongoPort=27017
mongoDb=BinanceTriArbitrage
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

#### binancePairs=ETH-BTC,BTC-USDT,ETH-USDT
#### these are paths we can trade into, from btc as the starting point
#### these are paths we can step through
### The starting point
binanceStartingPoint=BTC

### The possible currencies we step via
binanceColumns=BNB,ETH,USDT

0 comments on commit 891159f

Please sign in to comment.