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.
21 lines
530 B
21 lines
530 B
package sig |
|
|
|
import "sig-pub/pkg/indicator" |
|
|
|
type IndicatorSummary struct { |
|
indicator.IIndicatorSummary |
|
indicatorContext IOffsetIndicatorContext |
|
summaryIndicator indicator.ISummaryIndicator |
|
} |
|
|
|
func NewIndicatorSummary(summaryIndicator indicator.ISummaryIndicator, indicatorContext IOffsetIndicatorContext) *IndicatorSummary { |
|
return &IndicatorSummary{ |
|
summaryIndicator: summaryIndicator, |
|
indicatorContext: indicatorContext, |
|
} |
|
} |
|
|
|
func (s *IndicatorSummary) Summary(offset, count int16) (summary any, ok bool) { |
|
|
|
return |
|
}
|
|
|