代码拉取完成,页面将自动刷新
package smart
import (
"gitee.com/quant1x/engine/cache"
"gitee.com/quant1x/engine/cachel5"
"gitee.com/quant1x/engine/factors"
"sync"
)
var (
__l5Once sync.Once
// 历史数据
__l5History *cachel5.Cache1D[*factors.History] = nil
// 基本面F10
__l5F10 *cachel5.Cache1D[*factors.F10] = nil
)
func init() {
__l5Once.Do(lazyInitFeatures)
}
func lazyInitFeatures() {
// 历史数据
__l5History = cachel5.NewCache1D[*factors.History](factors.CacheL5KeyHistory, factors.NewHistory)
err := cache.Register(__l5History)
if err != nil {
panic(err)
}
// 基本面F10
__l5F10 = cachel5.NewCache1D[*factors.F10](factors.CacheL5KeyF10, factors.NewF10)
err = cache.Register(__l5F10)
if err != nil {
panic(err)
}
}
// CacheList 缓存列表
func CacheList() []cachel5.CacheAdapter {
__l5Once.Do(lazyInitFeatures)
list := []cachel5.CacheAdapter{
__l5F10,
__l5History,
}
return list
}
func CacheHistory() *cachel5.Cache1D[*factors.History] {
__l5Once.Do(lazyInitFeatures)
return __l5History
}
func GetL5History(securityCode string, date ...string) *factors.History {
__l5Once.Do(lazyInitFeatures)
data := __l5History.Get(securityCode, date...)
if data == nil {
return nil
}
return *data
}
func CacheF10() *cachel5.Cache1D[*factors.F10] {
__l5Once.Do(lazyInitFeatures)
return __l5F10
}
func GetL5F10(securityCode string, date ...string) *factors.F10 {
__l5Once.Do(lazyInitFeatures)
data := __l5F10.Get(securityCode, date...)
if data == nil {
return nil
}
return *data
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。