代码拉取完成,页面将自动刷新
package command
import (
"fmt"
"gitee.com/quant1x/engine/cachel5"
"gitee.com/quant1x/engine/storages"
flags "github.com/spf13/cobra"
)
// CmdUpdate 更新数据
var CmdUpdate = &flags.Command{
Use: "update",
Example: Application + " update --all",
//Args: args.MinimumNArgs(0),
Args: func(cmd *flags.Command, args []string) error {
return nil
},
Short: "更新股市数据",
Long: `更新股市数据`,
Run: func(cmd *flags.Command, args []string) {
if flagHistory.Value {
handleUpdateAll()
}
},
}
func init() {
flagHistory.init(CmdUpdate)
}
func handleUpdateAll() {
fmt.Println()
currentDate := cachel5.DefaultCanUpdateDate()
cacheDate, featureDate := cachel5.CorrectDate(currentDate)
//storages.UpdateBaseCache(&barIndex, cacheDate, featureDate)
storages.UpdateBaseData(&barIndex, cacheDate, featureDate)
_ = cacheDate
_ = featureDate
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。