You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model
|
|
|
|
// Model 领域模型定义
|
|
|
|
// Symbol 标的模型
|
|
type Symbol struct {
|
|
SymbolID string
|
|
Name string
|
|
// TODO: 补充字段
|
|
}
|
|
|
|
// KLine K线模型
|
|
type KLine struct {
|
|
Symbol string
|
|
Open float64
|
|
High float64
|
|
Low float64
|
|
Close float64
|
|
Volume int64
|
|
Amount float64
|
|
// TODO: 补充字段
|
|
}
|