bbgo_origin/pkg/backtest/stream.go

88 lines
1.8 KiB
Go
Raw Normal View History

package backtest
import (
"context"
2020-11-09 08:34:35 +00:00
"fmt"
2020-11-06 19:18:05 +00:00
log "github.com/sirupsen/logrus"
"github.com/c9s/bbgo/pkg/types"
)
type Stream struct {
types.StandardStream
exchange *Exchange
}
func (s *Stream) Connect(ctx context.Context) error {
2020-11-06 19:18:05 +00:00
log.Infof("collecting backtest configurations...")
loadedSymbols := map[string]struct{}{}
2020-11-07 12:34:34 +00:00
loadedIntervals := map[types.Interval]struct{}{
// 1m interval is required for the backtest matching engine
2020-11-10 06:18:04 +00:00
types.Interval1m: {},
types.Interval1d: {},
2020-11-07 12:34:34 +00:00
}
for _, sub := range s.Subscriptions {
loadedSymbols[sub.Symbol] = struct{}{}
switch sub.Channel {
case types.KLineChannel:
loadedIntervals[types.Interval(sub.Options.Interval)] = struct{}{}
default:
2020-11-09 08:34:35 +00:00
return fmt.Errorf("stream channel %s is not supported in backtest", sub.Channel)
}
}
var symbols []string
for symbol := range loadedSymbols {
symbols = append(symbols, symbol)
}
var intervals []types.Interval
for interval := range loadedIntervals {
intervals = append(intervals, interval)
}
2020-11-06 19:18:05 +00:00
log.Infof("used symbols: %v and intervals: %v", symbols, intervals)
2020-11-07 12:11:07 +00:00
go func() {
2020-11-10 11:06:20 +00:00
s.EmitConnect()
klineC, errC := s.exchange.srv.QueryKLinesCh(s.exchange.startTime, s.exchange.endTime, s.exchange, symbols, intervals)
2020-11-07 12:11:07 +00:00
for k := range klineC {
if k.Interval == types.Interval1m {
matching, ok := s.exchange.matchingBooks[k.Symbol]
if !ok {
log.Errorf("matching book of %s is not initialized", k.Symbol)
}
2020-11-10 06:18:04 +00:00
matching.processKLine(k)
}
2020-11-07 12:11:07 +00:00
s.EmitKLineClosed(k)
}
if err := <-errC; err != nil {
log.WithError(err).Error("backtest data feed error")
}
2020-11-07 12:34:34 +00:00
if err := s.Close(); err != nil {
2020-11-07 12:11:07 +00:00
log.WithError(err).Error("stream close error")
}
}()
return nil
}
2020-12-21 07:45:40 +00:00
func (s *Stream) SetPublicOnly() {
return
}
func (s *Stream) Close() error {
2020-11-07 12:11:07 +00:00
close(s.exchange.doneC)
return nil
}