feat: 批量LLM九维分析+仓位建议列+Dashboard显示

This commit is contained in:
知微
2026-07-09 23:16:47 +08:00
parent 0c6dd82b30
commit 016258bc09
3 changed files with 285 additions and 3 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ def api_watchlist():
rows = conn.execute("""
SELECT hs.code, hs.name, hs.entry_low, hs.entry_high, hs.stop_loss, hs.take_profit,
hs.timing_signal, hs.action, lp.price, lp.change_pct, hs.rr_ratio, hs.updated_at,
hs.tech_snapshot, hs.sector_context
hs.tech_snapshot, hs.sector_context, hs.full_analysis, hs.position_advice
FROM holding_strategies hs
LEFT JOIN live_prices lp ON hs.code = lp.code
WHERE hs.status='active' AND hs.decision_type='自选策略'