qbtrade/pkg/indicator/weighteddrift_callbacks.go
2024-06-27 22:42:38 +08:00

16 lines
332 B
Go

// Code generated by "callbackgen -type WeightedDrift"; DO NOT EDIT.
package indicator
import ()
func (inc *WeightedDrift) OnUpdate(cb func(value float64)) {
inc.UpdateCallbacks = append(inc.UpdateCallbacks, cb)
}
func (inc *WeightedDrift) EmitUpdate(value float64) {
for _, cb := range inc.UpdateCallbacks {
cb(value)
}
}