bbgo_origin/pkg/indicator/utBotAlert_callbacks.go

18 lines
373 B
Go
Raw Permalink Normal View History

2023-01-14 15:12:53 +00:00
// 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)
}
}