minor changes
This commit is contained in:
parent
4859bf18a3
commit
0949f54c7d
@ -27,7 +27,6 @@
|
||||
"BTC_MLN",
|
||||
"BTC_XZC",
|
||||
"BTC_TIME",
|
||||
"BTC_NXS",
|
||||
"BTC_LUN"
|
||||
]
|
||||
},
|
||||
|
7
main.py
7
main.py
@ -196,10 +196,9 @@ def create_trade(stake_amount: float, exchange):
|
||||
trades = Trade.query.filter(Trade.is_open.is_(True)).all()
|
||||
trades.append(latest_trade)
|
||||
for trade in trades:
|
||||
if trade.pair not in whitelist:
|
||||
continue
|
||||
whitelist.remove(trade.pair)
|
||||
logger.debug('Ignoring {} in pair whitelist'.format(trade.pair))
|
||||
if trade.pair in whitelist:
|
||||
whitelist.remove(trade.pair)
|
||||
logger.debug('Ignoring {} in pair whitelist'.format(trade.pair))
|
||||
if not whitelist:
|
||||
raise ValueError('No pair in whitelist')
|
||||
|
||||
|
@ -2,7 +2,7 @@ import logging
|
||||
from datetime import timedelta
|
||||
|
||||
import arrow
|
||||
from telegram.error import NetworkError, BadRequest
|
||||
from telegram.error import NetworkError
|
||||
from telegram.ext import CommandHandler, Updater
|
||||
from telegram import ParseMode, Bot, Update
|
||||
from wrapt import synchronized
|
||||
|
Loading…
Reference in New Issue
Block a user