stoploss precentage in telegram msg removed

This commit is contained in:
Misagh
2019-03-28 16:21:49 +01:00
parent 0e5b0ebda6
commit e11eb4775e
3 changed files with 3 additions and 8 deletions

View File

@@ -204,7 +204,7 @@ class Telegram(RPC):
"*Current Rate:* `{current_rate:.8f}`",
"*Close Profit:* `{close_profit}`" if r['close_profit'] else "",
"*Current Profit:* `{current_profit:.2f}%`",
"*Stoploss:* `{stop_loss:.8f}` ({stop_loss_percentage})",
"*Stoploss:* `{stop_loss:.8f}`",
"*Open Order:* `{open_order}`" if r['open_order'] else "",
]
messages.append("\n".join(filter(None, lines)).format(**r))