bbgo_origin/pkg/indicator/obv_callbacks.go

16 lines
302 B
Go
Raw Normal View History

2021-05-10 09:17:50 +00:00
// Code generated by "callbackgen -type OBV"; DO NOT EDIT.
package indicator
import ()
func (inc *OBV) OnUpdate(cb func(value float64)) {
2022-07-13 17:16:39 +00:00
inc.updateCallbacks = append(inc.updateCallbacks, cb)
2021-05-10 09:17:50 +00:00
}
func (inc *OBV) EmitUpdate(value float64) {
2022-07-13 17:16:39 +00:00
for _, cb := range inc.updateCallbacks {
2021-05-10 09:17:50 +00:00
cb(value)
}
}