mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
16 lines
321 B
Go
16 lines
321 B
Go
// Code generated by "callbackgen -type STOCH"; DO NOT EDIT.
|
|
|
|
package indicator
|
|
|
|
import ()
|
|
|
|
func (inc *STOCH) OnUpdate(cb func(k float64, d float64)) {
|
|
inc.UpdateCallbacks = append(inc.UpdateCallbacks, cb)
|
|
}
|
|
|
|
func (inc *STOCH) EmitUpdate(k float64, d float64) {
|
|
for _, cb := range inc.UpdateCallbacks {
|
|
cb(k, d)
|
|
}
|
|
}
|