2 Star 7 Fork 11

王布衣/engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
task_update_rzrq.go 723 Bytes
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2024-04-11 17:52 . misc增加融资余额占比字段
package services
import (
"gitee.com/quant1x/engine/cache"
"gitee.com/quant1x/engine/factors"
"gitee.com/quant1x/engine/market"
"gitee.com/quant1x/gox/logger"
)
func jobUpdateMarginTrading() {
logger.Infof("同步融资融券...")
updateMarginTrading()
logger.Infof("同步融资融券...OK")
}
func updateMarginTrading() {
date := cache.DefaultCanReadDate()
factors.MarginTradingTargetInit(date)
allCodes := market.GetCodeList()
for _, securityCode := range allCodes {
misc := factors.GetL5Misc(securityCode)
if misc == nil {
continue
}
rzrq, ok := factors.GetMarginTradingTarget(securityCode)
if ok {
misc.RZYEZB = rzrq.RZYEZB
factors.UpdateL5Misc(misc)
}
}
factors.RefreshL5Misc()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quant1x/engine.git
git@gitee.com:quant1x/engine.git
quant1x
engine
engine
v1.8.42

搜索帮助