mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
package bbgo
|
|
|
|
import (
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
type Interval string
|
|
|
|
var Interval1m = Interval("1m")
|
|
var Interval5m = Interval("5m")
|
|
var Interval1h = Interval("1h")
|
|
var Interval1d = Interval("1d")
|
|
|
|
type KLineCallback func(kline types.KLine)
|
|
|
|
//go:generate callbackgen -type MarketDataStore
|
|
type MarketDataStore struct {
|
|
// KLineWindows stores all loaded klines per interval
|
|
KLineWindows map[Interval]types.KLineWindow `json:"-"`
|
|
|
|
updateCallbacks []KLineCallback
|
|
}
|
|
|
|
func NewMarketDataStore() *MarketDataStore {
|
|
return &MarketDataStore{
|
|
// KLineWindows stores all loaded klines per interval
|
|
KLineWindows: make(map[Interval]types.KLineWindow),
|
|
}
|
|
}
|
|
|
|
func (store *MarketDataStore) BindStream(stream types.Stream) {
|
|
stream.OnKLineClosed(store.handleKLineClosed)
|
|
}
|
|
|
|
func (store *MarketDataStore) handleKLineClosed(kline types.KLine) {
|
|
store.AddKLine(kline)
|
|
}
|
|
|
|
func (store *MarketDataStore) AddKLine(kline types.KLine) {
|
|
var interval = Interval(kline.Interval)
|
|
var window = store.KLineWindows[interval]
|
|
window.Add(kline)
|
|
|
|
store.EmitUpdate(kline)
|
|
}
|