-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.py
18 lines (18 loc) · 865 Bytes
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
BINANCE_API_KEY = 'API_KEY_HERE'
BINANCE_API_SECRET = 'API_SECRET_HERE'
BITTREX_API_KEY = 'API_KEY_HERE'
BITTREX_API_SECRET = 'API_SECRET_HERE'
COIN_LIST = {'NXS':['100', '3', 'BTC'],
'KMD': ['15', '1.5', 'BTC'],
'LTC': ['0.15', '4', 'BTC'],
'LTC-2': ['0.15', '4', 'ETH'],
'DOGE': ['2000', '6', 'BTC'],
'PIVX':['30', '2', 'BTC']} #Coin : Amount : percent : BASE
DEBUG = 1 #0=off 1=stats 2=stats+errors
DESIRED_CYCLES = 1 #Number of trades before equalize, if FLIP_MODE set to 0
DRY_RUN = False #No withdrawl or trades, just test
FLIP_MODE = True #Flip buy and sell so no withdrawl is needed
GAIN_BTC = True #True = stack sats, False = stack coin
LIQUIDITY_MODULE = True #Check orrderbook before trading
SLEEP_AFTER_TRADE = 0.1 #Sleep after trade
SLEEP_BETWEEN_CYCLE = 0.1 #Sleep between price checks