fix: don't show "**" for /status table

This commit is contained in:
Matthias
2025-01-07 19:19:38 +01:00
parent b57cedeab7
commit cb0fc9c1a9

View File

@@ -326,7 +326,7 @@ class RPC:
active_order_side = ".".join( active_order_side = ".".join(
"*" if (o.get("is_open") and o.get("ft_is_entry")) else "**" "*" if (o.get("is_open") and o.get("ft_is_entry")) else "**"
for o in orders 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 # Direction string for non-spot