bbgo_origin/pkg/indicator/rma_callbacks.go

16 lines
302 B
Go
Raw Normal View History

2022-04-18 03:27:50 +00:00
// Code generated by "callbackgen -type RMA"; DO NOT EDIT.
package indicator
import ()
func (inc *RMA) OnUpdate(cb func(value float64)) {
inc.UpdateCallbacks = append(inc.UpdateCallbacks, cb)
}
func (inc *RMA) EmitUpdate(value float64) {
for _, cb := range inc.UpdateCallbacks {
cb(value)
}
}