bbgo_origin/pkg/indicator/emv_callbacks.go
2022-05-31 16:28:38 +09:00

16 lines
302 B
Go

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