reducre complexity

This commit is contained in:
gcarq 2017-05-12 22:41:49 +02:00
parent 61664fcae4
commit 55b3c13798
1 changed files with 24 additions and 24 deletions

20
main.py
View File

@ -68,7 +68,11 @@ class TradeThread(threading.Thread):
try:
# Query trades from persistence layer
trade = Trade.query.filter(Trade.is_open.is_(True)).first()
if trade:
if not trade:
# Create entity and execute trade
Session.add(create_trade(float(conf['stake_amount']), api_wrapper.exchange))
continue
# Check if there is already an open order for this pair
open_orders = api_wrapper.get_open_orders(trade.pair)
if open_orders:
@ -84,21 +88,17 @@ class TradeThread(threading.Thread):
else:
# Maybe sell with current rate
handle_trade(trade)
else:
# Prepare entity and execute trade
Session.add(create_trade(float(conf['stake_amount']), api_wrapper.exchange))
except ValueError:
logger.exception('ValueError')
except RuntimeError:
TelegramHandler.send_msg('RuntimeError. Stopping trader ...'.format(traceback.format_exc()))
logger.exception('RuntimeError. Stopping trader ...')
Session.flush()
return
finally:
Session.flush()
time.sleep(25)
except RuntimeError:
TelegramHandler.send_msg('*Status:* Got RuntimeError: ```\n{}\n```'.format(traceback.format_exc()))
logger.exception('RuntimeError. Stopping trader ...')
finally:
TelegramHandler.send_msg('*Status:* `trader has stopped`')
Session.flush()
TelegramHandler.send_msg('*Status:* `Trader has stopped`')
def close_trade_if_fulfilled(trade):