bbgo_origin/pkg/indicator/zlema_callbacks.go

16 lines
308 B
Go
Raw Normal View History

2022-04-19 10:22:22 +00:00
// Code generated by "callbackgen -type ZLEMA"; DO NOT EDIT.
package indicator
import ()
func (inc *ZLEMA) OnUpdate(cb func(value float64)) {
inc.updateCallbacks = append(inc.updateCallbacks, cb)
2022-04-19 10:22:22 +00:00
}
func (inc *ZLEMA) EmitUpdate(value float64) {
for _, cb := range inc.updateCallbacks {
2022-04-19 10:22:22 +00:00
cb(value)
}
}