bbgo_origin/pkg/strategy/fmaker/s6_callbacks.go
austin362667 c904f9f0f7 strategy: add fmaker
fmaker: cleanup
2022-05-29 21:39:11 +08:00

16 lines
290 B
Go

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