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 indicator |
|
|
|
// load indicator plugin |
|
|
|
// 热指标 自动加载/实时更新/内存缓存 |
|
// 历史指标 实时计算 |
|
// 自定义插件化指标 |
|
|
|
type IndicatorService struct { |
|
} |
|
|
|
func NewIndicatorService() *IndicatorService { |
|
return &IndicatorService{} |
|
} |
|
|
|
// 加载热指标 |
|
// 订阅k线数据 更新指标 |
|
func (svc *IndicatorService) Init() { |
|
|
|
}
|
|
|