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

16 lines
308 B
Go

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