bbgo_origin/pkg/strategy/harmonic/shark_callbacks.go
austin362667 f1ae7b5f30 strategy: add harmonic shark pattern recognition
strategy: add harmonic shark pattern recognition
2022-10-04 15:20:17 +08:00

16 lines
307 B
Go

// Code generated by "callbackgen -type SHARK"; DO NOT EDIT.
package harmonic
import ()
func (inc *SHARK) OnUpdate(cb func(value float64)) {
inc.updateCallbacks = append(inc.updateCallbacks, cb)
}
func (inc *SHARK) EmitUpdate(value float64) {
for _, cb := range inc.updateCallbacks {
cb(value)
}
}