bbgo_origin/pkg/indicator/utBotAlert_callbacks.go
2023-01-14 18:13:18 +01:00

18 lines
373 B
Go

// Code generated by "callbackgen -type Supertrend"; DO NOT EDIT.
package indicator
import (
"github.com/c9s/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)
}
}