bbgo_origin/pkg/indicator/ewma_callbacks.go
2020-12-03 18:14:16 +08:00

16 lines
305 B
Go

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