diff --git a/app/services/strategy_runner.py b/app/services/strategy_runner.py index 105f442..9e6c0c4 100644 --- a/app/services/strategy_runner.py +++ b/app/services/strategy_runner.py @@ -449,7 +449,7 @@ def _eval_trail(st, pos, day, now, ctx): state["high_water"] = round(hw, 3) if not state.get("armed") and profit >= start_line: state["armed"] = True - ctx["notes"].append(f"{st['ts_code']} 跟踪止盈已武装(浮盈 {profit:.1%} ≥ 启动线 {start_line:.1%})") + ctx["notes"].append(f"{st['ts_code']} 跟踪止盈已启动(浮盈 {profit:.1%} ≥ 启动线 {start_line:.1%})") if avail < LOT: return None # 无 T+1 可卖, 只更新高水位 diff --git a/app/web/static/index.html b/app/web/static/index.html index 95d4d67..6838f38 100644 --- a/app/web/static/index.html +++ b/app/web/static/index.html @@ -4,10 +4,10 @@