feat: v7家族 — 分批止盈引擎+亏损尸检因子(hl结构/RSI增量),v7.1双赢73%/+8.01%,v7.2达79.7%胜率,v7.3达85.7%/回撤9.68%

This commit is contained in:
hmo
2026-07-29 01:45:40 +08:00
parent 45cd076a2e
commit c7aa01a5da
2 changed files with 80 additions and 22 deletions
+1 -1
View File
@@ -2059,7 +2059,7 @@ function showStrategyResult(data) {
'<th class="text-left px-2 py-1">代码</th><th class="text-left px-2 py-1">名称</th><th class="text-left px-2 py-1">入场</th>' +
'<th class="text-right px-2 py-1">买入</th><th class="text-right px-2 py-1">卖出</th><th class="text-right px-2 py-1">收益</th>' +
'<th class="text-center px-2 py-1">结果</th><th class="text-right px-2 py-1">持仓</th><th class="text-right px-2 py-1">评分</th></tr></thead><tbody>';
const reasonMap = { target: '🎯止盈', stop: '🛑止损', keep: '⏳到期' };
const reasonMap = { target: '🎯止盈', stop: '🛑止损', keep: '⏳到期', staged_end: '🪜分批', trail: '📈跟踪' };
for (const t of trades) {
const pc = (t.profit_pct || 0) >= 0 ? 'text-green-400' : 'text-red-400';
html += '<tr class="border-b border-slate-800/40">' +