diff --git a/freqtrade/rpc/rpc.py b/freqtrade/rpc/rpc.py index a24661397f0..11b1fd00303 100644 --- a/freqtrade/rpc/rpc.py +++ b/freqtrade/rpc/rpc.py @@ -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