新增日内方向分析功能:基于三层打分数据由 AI 批量生成下一个交易日方向判断

This commit is contained in:
fish
2026-05-11 21:18:29 +08:00
parent 6ab310cfb3
commit f5615d9580
8 changed files with 746 additions and 0 deletions

View File

@@ -35,6 +35,8 @@ func New(d *handlers.Deps, dist fs.FS) http.Handler {
r.Post("/run/range", d.RunRange)
r.Post("/run/full", d.RunFull)
r.Get("/ai/analyze", d.Analyze)
r.Post("/ai/daily-direction", d.DailyDirectionRun)
r.Get("/ai/daily-direction", d.ListDailyDirections)
r.Group(func(r chi.Router) {
r.Use(mw.RequireAdmin)