mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
18 lines
373 B
Go
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)
|
||
|
}
|
||
|
}
|