Skip to content

Commit

Permalink
fix: don't show "**" for /status table
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Jan 7, 2025
1 parent b57cede commit cb0fc9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freqtrade/rpc/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def _rpc_status_table(
active_order_side = ".".join(
"*" if (o.get("is_open") and o.get("ft_is_entry")) else "**"
for o in orders
if o.get("is_open")
if o.get("is_open") and o.get("ft_order_side") != "stoploss"
)

# Direction string for non-spot
Expand Down

0 comments on commit cb0fc9c

Please sign in to comment.