2 Star 8 Fork 11

王布衣/engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
cache
cachel5
command
factors
features
base
cache_kline.go
cache_xdxr.go
dataset.go
feature.go
feature_test.go
history.go
qsfz.go
snapshot.go
utils.go
flash
internal/functions
market
models
storages
.gitignore
CHANGELOG.md
LICENSE
README.md
go.mod
go.sum
main.go
克隆/下载
cache_xdxr.go 810 Bytes
一键复制 编辑 原始数据 按行查看 历史
package features
type DataXdxr struct {
DataCache
}
func (x *DataXdxr) Kind() FeatureKind {
return FeatureBaseXdxr
}
func (x *DataXdxr) Name() string {
return mapFeatures[x.Kind()].Name
}
func (x *DataXdxr) Key() string {
return mapFeatures[x.Kind()].Key
}
func (x *DataXdxr) Filename(date, code string) string {
//TODO implement me
panic("implement me")
}
func (x *DataXdxr) Update(cacheDate, featureDate string) {
//TODO implement me
panic("implement me")
}
func (x *DataXdxr) Repair(cacheDate, featureDate string) {
//TODO implement me
panic("implement me")
}
func (x *DataXdxr) Increase(snapshot Snapshot) {
//TODO implement me
panic("implement me")
}
func (x *DataXdxr) Clone(date string, code string) DataSet {
var dest = DataXdxr{DataCache{Date: date, Code: code}}
return &dest
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quant1x/engine.git
git@gitee.com:quant1x/engine.git
quant1x
engine
engine
v0.1.1

搜索帮助