Skip to content

Commit cb0fc9c

Browse files
committed
fix: don't show "**" for /status table
1 parent b57cede commit cb0fc9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

freqtrade/rpc/rpc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def _rpc_status_table(
326326
active_order_side = ".".join(
327327
"*" if (o.get("is_open") and o.get("ft_is_entry")) else "**"
328328
for o in orders
329-
if o.get("is_open")
329+
if o.get("is_open") and o.get("ft_order_side") != "stoploss"
330330
)
331331

332332
# Direction string for non-spot

0 commit comments

Comments
 (0)