bbgo_origin/pkg/indicator/dema_callbacks.go
2022-04-19 19:22:22 +09:00

16 lines
305 B
Go

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