// 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) } }