mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
12 lines
249 B
Go
12 lines
249 B
Go
|
package indicator
|
||
|
|
||
|
import "github.com/c9s/bbgo/pkg/types"
|
||
|
|
||
|
type KLineWindowUpdater interface {
|
||
|
OnKLineWindowUpdate(func(interval types.Interval, window types.KLineWindow))
|
||
|
}
|
||
|
|
||
|
type KLineCloseHandler interface {
|
||
|
OnKLineClosed(func(k types.KLine))
|
||
|
}
|