This commit is contained in:
2026-05-02 12:58:16 +08:00
parent 7f3117fd88
commit a2b101621b
3 changed files with 46 additions and 46 deletions

View File

@@ -32,25 +32,25 @@ type DatasetIndicatorPro struct {
TotalMv float64 `gorm:"type:decimal(20,4);comment:总市值(万元)"`
CircMv float64 `gorm:"type:decimal(20,4);comment:流通市值(万元)"`
AdjFactor float64 `gorm:"type:decimal(20,6);comment:复权因子"`
MaBfq5 float64 `gorm:"type:decimal(20,6);comment:MA5复权"`
MaBfq10 float64 `gorm:"type:decimal(20,6);comment:MA10复权"`
MaBfq20 float64 `gorm:"type:decimal(20,6);comment:MA20复权"`
MaBfq60 float64 `gorm:"type:decimal(20,6);comment:MA60复权"`
EmaBfq5 float64 `gorm:"type:decimal(20,6);comment:EMA5复权"`
EmaBfq10 float64 `gorm:"type:decimal(20,6);comment:EMA10复权"`
EmaBfq20 float64 `gorm:"type:decimal(20,6);comment:EMA20复权"`
MacdBfq float64 `gorm:"type:decimal(20,6);comment:MACD复权"`
MacdDifBfq float64 `gorm:"type:decimal(20,6);comment:MACD DIF复权"`
MacdDeaBfq float64 `gorm:"type:decimal(20,6);comment:MACD DEA复权"`
RsiBfq6 float64 `gorm:"type:decimal(20,6);comment:RSI6复权"`
RsiBfq12 float64 `gorm:"type:decimal(20,6);comment:RSI12复权"`
RsiBfq24 float64 `gorm:"type:decimal(20,6);comment:RSI24复权"`
KdjKBfq float64 `gorm:"type:decimal(20,6);comment:KDJ-K复权"`
KdjDBfq float64 `gorm:"type:decimal(20,6);comment:KDJ-D复权"`
KdjBfq float64 `gorm:"type:decimal(20,6);comment:KDJ-J复权"`
BollUpperBfq float64 `gorm:"type:decimal(20,6);comment:BOLL上轨复权"`
BollMidBfq float64 `gorm:"type:decimal(20,6);comment:BOLL中轨复权"`
BollLowerBfq float64 `gorm:"type:decimal(20,6);comment:BOLL下轨复权"`
MaQfq5 float64 `gorm:"type:decimal(20,6);comment:MA5复权"`
MaQfq10 float64 `gorm:"type:decimal(20,6);comment:MA10复权"`
MaQfq20 float64 `gorm:"type:decimal(20,6);comment:MA20复权"`
MaQfq60 float64 `gorm:"type:decimal(20,6);comment:MA60复权"`
EmaQfq5 float64 `gorm:"type:decimal(20,6);comment:EMA5复权"`
EmaQfq10 float64 `gorm:"type:decimal(20,6);comment:EMA10复权"`
EmaQfq20 float64 `gorm:"type:decimal(20,6);comment:EMA20复权"`
MacdQfq float64 `gorm:"type:decimal(20,6);comment:MACD复权"`
MacdDifQfq float64 `gorm:"type:decimal(20,6);comment:MACD DIF复权"`
MacdDeaQfq float64 `gorm:"type:decimal(20,6);comment:MACD DEA复权"`
RsiQfq6 float64 `gorm:"type:decimal(20,6);comment:RSI6复权"`
RsiQfq12 float64 `gorm:"type:decimal(20,6);comment:RSI12复权"`
RsiQfq24 float64 `gorm:"type:decimal(20,6);comment:RSI24复权"`
KdjKQfq float64 `gorm:"type:decimal(20,6);comment:KDJ-K复权"`
KdjDQfq float64 `gorm:"type:decimal(20,6);comment:KDJ-D复权"`
KdjQfq float64 `gorm:"type:decimal(20,6);comment:KDJ-J复权"`
BollUpperQfq float64 `gorm:"type:decimal(20,6);comment:BOLL上轨复权"`
BollMidQfq float64 `gorm:"type:decimal(20,6);comment:BOLL中轨复权"`
BollLowerQfq float64 `gorm:"type:decimal(20,6);comment:BOLL下轨复权"`
}
func (DatasetIndicatorPro) TableName() string {