Files
gostock/internal/logic/strategy/rule/up_date.go

22 lines
358 B
Go
Raw Normal View History

2026-01-27 02:09:44 +08:00
package rule
import (
"git.apinb.com/quant/gostock/internal/logic/types"
)
type UpDate struct {
Key string
Name string
}
func NewUpDate() *UpDate {
return &UpDate{
Key: "UpDate",
Name: "上市时间",
}
}
func (r *UpDate) Run(in string) *types.RuleResult {
2026-01-28 02:18:48 +08:00
return &types.RuleResult{Key: r.Key, Name: r.Name, Score: 1, Desc: "暂不计算"}
2026-01-27 02:09:44 +08:00
}