cleaned up the logging

This commit is contained in:
Gert Wohlgemuth 2018-05-11 16:10:40 -07:00
parent 8a1155b0c5
commit 734c21fcfd
2 changed files with 3 additions and 3 deletions

View File

@ -205,11 +205,11 @@ class Analyze(object):
# just for debugging
if 'trailing_stop' in self.config and self.config['trailing_stop']:
print(
logger.warning(
"HIT STOP: current price at {:.6f}, stop loss is {:.6f}, "
"initial stop loss was at {:.6f}, trade opened at {:.6f}".format(
current_rate, trade.stop_loss, trade.initial_stop_loss, trade.open_rate))
print("trailing stop saved us: {:.6f}".format(trade.stop_loss - trade.initial_stop_loss))
logger.debug("trailing stop saved us: {:.6f}".format(trade.stop_loss - trade.initial_stop_loss))
logger.debug('Stop loss hit.')
return True

View File

@ -141,7 +141,7 @@ class Trade(_DECL_BASE):
else:
logger.debug("keeping current stop loss")
print(
logger.debug(
"{} - current price {:.6f}, bought at {:.6f} and calculated "
"stop loss is at: {:.6f} initial stop at {:.6f}. trailing stop loss saved us: {:.6f} "
"and max observed rate was {:.6f}".format(