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

16 lines
296 B
Go

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