2 Star 13 Fork 14

王布衣/engine

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
data_action.go 404 Bytes
Copy Edit Raw Blame History
王布衣 authored 2025-03-01 18:59 +08:00 . 操作动作增加回测
package cache
const (
UseGoroutine = false // 更新和修复数据是否启用协程
)
type OpKind int
const (
OpUpdate OpKind = iota + 1 // 更新
OpRepair // 修复
OpIncr // 增量
OpBackTest // 回测
)
var OpMap = map[OpKind]string{
OpUpdate: "更新",
OpRepair: "修复",
OpIncr: "增量",
OpBackTest: "回测",
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quant1x/engine.git
git@gitee.com:quant1x/engine.git
quant1x
engine
engine
v1.9.16

Search