possible fixed the decimal error, which in non dry runs crashes the whole bot

This commit is contained in:
Gert Wohlgemuth 2018-05-12 10:08:30 -07:00
parent d928be505f
commit 749f058405

View File

@ -128,7 +128,7 @@ class Trade(_DECL_BASE):
self.max_rate = current_price self.max_rate = current_price
# no stop loss assigned yet # no stop loss assigned yet
if self.stop_loss is None: if self.stop_loss is None or self.stop_loss == 0:
logger.debug("assigning new stop loss") logger.debug("assigning new stop loss")
self.stop_loss = new_loss self.stop_loss = new_loss
self.initial_stop_loss = new_loss self.initial_stop_loss = new_loss
@ -142,12 +142,12 @@ class Trade(_DECL_BASE):
logger.debug("keeping current stop loss") logger.debug("keeping current stop loss")
print( print(
"{} - current price {:.6f}, bought at {:.6f} and calculated " "{} - current price {:.8f}, bought at {:.8f} and calculated "
"stop loss is at: {:.6f} initial stop at {:.6f}. trailing stop loss saved us: {:.6f} " "stop loss is at: {:.8f} initial stop at {:.8f}. trailing stop loss saved us: {:.8f} "
"and max observed rate was {:.6f}".format( "and max observed rate was {:.8f}".format(
self.pair, current_price, self.open_rate, self.pair, current_price, self.open_rate,
self.initial_stop_loss, self.initial_stop_loss,
self.stop_loss, self.stop_loss - self.initial_stop_loss, self.stop_loss, float(self.stop_loss) - float(self.initial_stop_loss),
self.max_rate self.max_rate
)) ))