代码拉取完成,页面将自动刷新
package cache
import (
"fmt"
"gitee.com/quant1x/gox/api"
)
// XdxrFilename XDXR缓存路径
func XdxrFilename(code string) string {
cacheId := CacheId(code)
length := len(cacheId)
xdxrPath := fmt.Sprintf("%s/%s/%s.csv", GetXdxrPath(), cacheId[:length-3], cacheId)
return xdxrPath
}
// KLineFilename 基础K线缓存路径
func KLineFilename(code string) string {
cacheId := CacheId(code)
length := len(cacheId)
filepath := fmt.Sprintf("%s/%s/%s.csv", GetDayPath(), cacheId[:length-3], cacheId)
return filepath
}
// Top10HoldersFilename 前十大流通股股东缓存文件名
func Top10HoldersFilename(code, date string) string {
idPath := CacheIdPath(code)
q, _, _ := api.GetQuarterByDate(date)
filename := fmt.Sprintf("%s/%s/%s.csv", GetHoldingPath(), q, idPath)
return filename
}
func quarterlyCachePath(date string) string {
q, _, _ := api.GetQuarterByDate(date)
path := fmt.Sprintf("%s/%s", GetQuarterlyPath(), q)
return path
}
// QuarterlyReportFilename 季报存储路径
//
// info
// |-- YYYYQ1
// |-- sh600105.report
// |-- YYYYQ2
// |-- YYYYQ3
// |-- YYYYQ4
// Deprecated: 不推荐使用
func QuarterlyReportFilename(code, date string) string {
idPath := CacheIdPath(code)
path := quarterlyCachePath(date)
filename := fmt.Sprintf("%s/%s.report", path, idPath)
return filename
}
// ReportsFilename 报告数据文件名
func ReportsFilename(date string) string {
keyword := "reports"
path := quarterlyCachePath(date)
filename := fmt.Sprintf("%s/%s.csv", path, keyword)
return filename
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。