adding %
This commit is contained in:
parent
5f38d5ee63
commit
d5498c8712
@ -111,9 +111,9 @@ class RPC(object):
|
|||||||
close_profit=fmt_close_profit,
|
close_profit=fmt_close_profit,
|
||||||
current_profit=round(current_profit * 100, 2),
|
current_profit=round(current_profit * 100, 2),
|
||||||
stop_loss=trade.stop_loss,
|
stop_loss=trade.stop_loss,
|
||||||
stop_loss_pct=trade.stop_loss_pct,
|
stop_loss_pct=(trade.stop_loss_pct * 100),
|
||||||
initial_stop_loss=trade.initial_stop_loss,
|
initial_stop_loss=trade.initial_stop_loss,
|
||||||
initial_stop_loss_pct=trade.initial_stop_loss_pct,
|
initial_stop_loss_pct=(trade.initial_stop_loss_pct * 100),
|
||||||
open_order='({} {} rem={:.8f})'.format(
|
open_order='({} {} rem={:.8f})'.format(
|
||||||
order['type'], order['side'], order['remaining']
|
order['type'], order['side'], order['remaining']
|
||||||
) if order else None,
|
) if order else None,
|
||||||
|
@ -208,12 +208,12 @@ class Telegram(RPC):
|
|||||||
|
|
||||||
# Adding initial stoploss only if it is different from stoploss
|
# Adding initial stoploss only if it is different from stoploss
|
||||||
"*Initial Stoploss:* `{initial_stop_loss:.8f}` " +
|
"*Initial Stoploss:* `{initial_stop_loss:.8f}` " +
|
||||||
("`({initial_stop_loss_pct:.2f})`" if r['initial_stop_loss_pct'] else "")
|
("`({initial_stop_loss_pct:.2f}%)`" if r['initial_stop_loss_pct'] else "")
|
||||||
if r['stop_loss'] != r['initial_stop_loss'] else "",
|
if r['stop_loss'] != r['initial_stop_loss'] else "",
|
||||||
|
|
||||||
# Adding stoploss and stoploss percentage only if it is not None
|
# Adding stoploss and stoploss percentage only if it is not None
|
||||||
"*Stoploss:* `{stop_loss:.8f}` " +
|
"*Stoploss:* `{stop_loss:.8f}` " +
|
||||||
("`({stop_loss_pct:.2f})`" if r['stop_loss_pct'] else ""),
|
("`({stop_loss_pct:.2f}%)`" if r['stop_loss_pct'] else ""),
|
||||||
|
|
||||||
"*Open Order:* `{open_order}`" if r['open_order'] else ""
|
"*Open Order:* `{open_order}`" if r['open_order'] else ""
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user