diff --git a/freqtrade/rpc/rpc.py b/freqtrade/rpc/rpc.py index a24661397..11b1fd003 100644 --- a/freqtrade/rpc/rpc.py +++ b/freqtrade/rpc/rpc.py @@ -326,7 +326,7 @@ class RPC: 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