18 lines
381 B
Go
18 lines
381 B
Go
// Code generated by "callbackgen -type Supertrend"; DO NOT EDIT.
|
|
|
|
package indicator
|
|
|
|
import (
|
|
"git.qtrade.icu/lychiyu/bbgo/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)
|
|
}
|
|
}
|