bbgo_origin/pkg/strategy/fmaker/a34_callbacks.go

16 lines
293 B
Go
Raw Normal View History

2022-05-29 13:27:58 +00:00
// Code generated by "callbackgen -type A34"; DO NOT EDIT.
package fmaker
import ()
func (inc *A34) OnUpdate(cb func(val float64)) {
inc.UpdateCallbacks = append(inc.UpdateCallbacks, cb)
}
func (inc *A34) EmitUpdate(val float64) {
for _, cb := range inc.UpdateCallbacks {
cb(val)
}
}