+ {msg.decision.symbol && (
+
+ 币种
+ {msg.decision.symbol}
+
+ )}
+
+ 方向
+ {a.label}
+
+
+ 信心
+ {msg.decision.confidence}%
+
+ {(msg.decision.leverage ?? 0) > 0 && (
+
+ 杠杆
+ {msg.decision.leverage}x
+
+ )}
+ {(msg.decision.position_pct ?? 0) > 0 && (
+
+ 仓位
+ {((msg.decision.position_pct ?? 0) * 100).toFixed(0)}%
+
+ )}
+ {(msg.decision.stop_loss ?? 0) > 0 && (
+
+ 止损
+ {((msg.decision.stop_loss ?? 0) * 100).toFixed(1)}%
+
+ )}
+ {(msg.decision.take_profit ?? 0) > 0 && (
+
+ 止盈
+ {((msg.decision.take_profit ?? 0) * 100).toFixed(1)}%
+
+ )}
+