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