2 Star 3 Fork 10

王布衣 / engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tracker.go 2.86 KB
一键复制 编辑 原始数据 按行查看 历史
package tracker
import (
"gitee.com/quant1x/engine/config"
"gitee.com/quant1x/engine/factors"
"gitee.com/quant1x/engine/models"
"gitee.com/quant1x/engine/permissions"
"gitee.com/quant1x/exchange"
"gitee.com/quant1x/gox/api"
"gitee.com/quant1x/gox/logger"
"gitee.com/quant1x/gox/progressbar"
"gitee.com/quant1x/gox/runtime"
"sort"
"time"
)
// Tracker 盘中跟踪
func Tracker(strategyNumbers ...uint64) {
for {
updateInRealTime, status := exchange.CanUpdateInRealtime()
isTrading := updateInRealTime && status == exchange.ExchangeTrading
if !runtime.Debug() && !isTrading {
// 非调试且非交易时段返回
return
}
barIndex := 1
models.SyncAllSnapshots(&barIndex)
//stockCodes := radar.ScanSectorForTick(barIndex)
for _, strategyNumber := range strategyNumbers {
model, err := models.CheckoutStrategy(strategyNumber)
if err != nil || model == nil {
continue
}
err = permissions.CheckPermission(model)
if err != nil {
logger.Error(err)
continue
}
strategyParameter := config.GetStrategyParameterByCode(strategyNumber)
if strategyParameter == nil {
continue
}
if strategyParameter.Session.IsTrading() {
snapshotTracker(&barIndex, model, strategyParameter)
} else {
if runtime.Debug() {
snapshotTracker(&barIndex, model, strategyParameter)
} else {
break
}
}
}
time.Sleep(time.Second * 1)
}
}
func snapshotTracker(barIndex *int, model models.Strategy, tradeRule *config.StrategyParameter) {
if tradeRule == nil {
return
}
stockCodes := tradeRule.StockList()
if len(stockCodes) == 0 {
return
}
var stockSnapshots []factors.QuoteSnapshot
stockCount := len(stockCodes)
bar := progressbar.NewBar(*barIndex, "执行["+model.Name()+"全市场扫描]", stockCount)
for start := 0; start < stockCount; start++ {
bar.Add(1)
code := stockCodes[start]
securityCode := exchange.CorrectSecurityCode(code)
if exchange.AssertIndexBySecurityCode(securityCode) {
continue
}
v := models.GetTickFromMemory(securityCode)
if v != nil {
snapshot := models.QuoteSnapshotFromProtocol(*v)
stockSnapshots = append(stockSnapshots, snapshot)
}
}
if len(stockSnapshots) == 0 {
return
}
// 过滤不符合条件的个股
stockSnapshots = api.Filter(stockSnapshots, func(snapshot factors.QuoteSnapshot) bool {
err := model.Filter(tradeRule.Rules, snapshot)
return err == nil
})
// 结果集排序
sortedStatus := model.Sort(stockSnapshots)
if sortedStatus == models.SortDefault || sortedStatus == models.SortNotExecuted {
// 默认排序或者排序未执行, 使用默认排序
sort.Slice(stockSnapshots, func(i, j int) bool {
a := stockSnapshots[i]
b := stockSnapshots[j]
if a.OpenTurnZ > b.OpenTurnZ {
return true
}
return a.OpenTurnZ == b.OpenTurnZ && a.OpeningChangeRate > b.OpeningChangeRate
})
}
// 输出表格
OutputTable(model, stockSnapshots)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quant1x/engine.git
git@gitee.com:quant1x/engine.git
quant1x
engine
engine
v1.2.8

搜索帮助

344bd9b3 5694891 D2dac590 5694891