qbtrade/pkg/indicator/utBotAlert_callbacks.go
2024-06-27 22:42:38 +08:00

18 lines
384 B
Go

// Code generated by "callbackgen -type Supertrend"; DO NOT EDIT.
package indicator
import (
"git.qtrade.icu/lychiyu/qbtrade/pkg/types"
)
func (inc *UtBotAlert) OnUpdate(cb func(value types.Direction)) {
inc.UpdateCallbacks = append(inc.UpdateCallbacks, cb)
}
func (inc *UtBotAlert) EmitUpdate(value types.Direction) {
for _, cb := range inc.UpdateCallbacks {
cb(value)
}
}