bbgo_origin/pkg/indicator/vwap_callbacks.go

16 lines
305 B
Go
Raw Normal View History

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