feat(indicator): ports + 骨架 + 完整测试 table(红灯)

为什么:先把测试与骨架同时落地,让"红灯先行"作为 commit 3 实现的
靶子。骨架函数全部返回零值,所有断言失败但无编译错误也无 panic。

变更:
- ports.go 新增 IndicatorComputer 接口;接收已 fetch 的 slice、
  避免与 MarketContextUsecase 重复 IO(G1 + G12)
- internal/usecase/indicator.go:常量、pivotPoint、9 个 helper +
  Compute 全部签名就位,实现先返零值
- internal/usecase/indicator_test.go:parsePrice/formatPrice/
  percentile/medianFloat/pivot{Highs,Lows}/clusterLevels/
  rangeHighLow/longShortCrossings/Compute 全部 table-driven
  覆盖(含 V-shape、双顶 0.18%/0.45%、三聚类、N=1/2/20 percentile、
  穿越保留 N、malformed 跳过等)
- go.mod 把 stretchr/testify v1.8.1 从 indirect 提升为 direct
This commit is contained in:
dela
2026-05-24 20:16:48 +08:00
parent c6c25d1a45
commit 6d412b2326
5 changed files with 607 additions and 0 deletions

View File

@@ -49,3 +49,16 @@ type TakerVolumeRepository interface {
UpsertMany(ctx context.Context, items []entity.TakerBuySellVolume) error
FindRecent(ctx context.Context, symbol, period string, limit int) ([]entity.TakerBuySellVolume, error)
}
// IndicatorComputer 纯函数式接口:接收已经被上层 fetch 的 slice
// 返回填充好的 TechnicalStructure。
//
// 不持有任何 repo 引用——保住 G1usecase 不依赖 repo 实现)和
// G12indicator 包零 repo 导入。MarketContextUsecase 已经并发 fetch
// 过 kline 与 long-short ratio复用结果即可二次注入仓库引用会
// 重复 IO。
//
// 实现可见 internal/usecase/indicator.go。
type IndicatorComputer interface {
Compute(klines []entity.Kline, longShort []entity.LongShortRatio) entity.TechnicalStructure
}