mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-23 07:15:15 +00:00
16 lines
425 B
Go
16 lines
425 B
Go
// Code generated by "callbackgen -type MACD"; DO NOT EDIT.
|
|
|
|
package indicator
|
|
|
|
import ()
|
|
|
|
func (inc *MACD) OnUpdate(cb func(fast float64, slow float64, signal float64, histogram float64)) {
|
|
inc.updateCallbacks = append(inc.updateCallbacks, cb)
|
|
}
|
|
|
|
func (inc *MACD) EmitUpdate(fast float64, slow float64, signal float64, histogram float64) {
|
|
for _, cb := range inc.updateCallbacks {
|
|
cb(fast, slow, signal, histogram)
|
|
}
|
|
}
|