mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-20 05:50:36 +00:00
refactor: use fstring for telegram sending
This commit is contained in:
@@ -670,7 +670,7 @@ class Telegram(RPCHandler):
|
|||||||
# TODO: This calculation ignores fees.
|
# TODO: This calculation ignores fees.
|
||||||
price_to_1st_entry = (cur_entry_average - first_avg) / first_avg
|
price_to_1st_entry = (cur_entry_average - first_avg) / first_avg
|
||||||
if is_open:
|
if is_open:
|
||||||
lines.append("({})".format(dt_humanize_delta(order["order_filled_date"])))
|
lines.append(f"({dt_humanize_delta(order['order_filled_date'])})")
|
||||||
lines.append(
|
lines.append(
|
||||||
f"*Amount:* {round_value(cur_entry_amount, 8)} "
|
f"*Amount:* {round_value(cur_entry_amount, 8)} "
|
||||||
f"({fmt_coin(order['cost'], quote_currency)})"
|
f"({fmt_coin(order['cost'], quote_currency)})"
|
||||||
@@ -818,7 +818,10 @@ class Telegram(RPCHandler):
|
|||||||
[
|
[
|
||||||
f"*Realized Profit:* `{r['realized_profit_ratio']:.2%} "
|
f"*Realized Profit:* `{r['realized_profit_ratio']:.2%} "
|
||||||
f"({r['realized_profit_r']})`",
|
f"({r['realized_profit_r']})`",
|
||||||
f"*Total Profit:* `{r['total_profit_ratio']:.2%} ({r['total_profit_abs_r']})`",
|
(
|
||||||
|
f"*Total Profit:* `{r['total_profit_ratio']:.2%} "
|
||||||
|
f"({r['total_profit_abs_r']})`",
|
||||||
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user