diff --git a/deploy/profile-scripts/mofin_db.py b/deploy/profile-scripts/mofin_db.py index 98318e1c..c31f664a 100644 --- a/deploy/profile-scripts/mofin_db.py +++ b/deploy/profile-scripts/mofin_db.py @@ -1649,6 +1649,8 @@ def check_strategy_outcomes(conn): """, (price, _reason, pnl_pct, tid)) if _real_pnl is not None and _real_pnl <= 0: print(f" [TRACK] {code} v{tid} 反弹减仓位! {price}≥{tp},成本{_cost},浮亏{_real_pnl}%(减仓窗口,非止盈)", flush=True) + elif _real_pnl is not None and _real_pnl < 2: + print(f" [TRACK] {code} v{tid} 成本线/阻力位! {price}≥{tp},成本{_cost}(贴近成本+前高阻力,决策点非止盈)", flush=True) elif _real_pnl is not None: print(f" [TRACK] {code} v{tid} 止盈! {price}≥{tp} 实际盈利+{_real_pnl}%(成本{_cost})", flush=True) else: