bbgo_origin/pkg/backtest/stream.go

130 lines
2.9 KiB
Go
Raw Normal View History

package backtest
import (
"context"
2020-11-09 08:34:35 +00:00
"fmt"
"github.com/sirupsen/logrus"
"github.com/c9s/bbgo/pkg/types"
)
var log = logrus.WithField("cmd", "backtest")
type Stream struct {
types.StandardStream
exchange *Exchange
publicOnly bool
}
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)
if !s.publicOnly {
// user data stream
s.OnTradeUpdate(func(trade types.Trade) {
s.exchange.trades[trade.Symbol] = append(s.exchange.trades[trade.Symbol], trade)
})
for symbol, market := range s.exchange.markets {
matching := &SimplePriceMatching{
CurrentTime: s.exchange.startTime,
Account: s.exchange.account,
Market: market,
MakerCommission: s.exchange.config.Account.MakerCommission,
TakerCommission: s.exchange.config.Account.TakerCommission,
}
matching.OnTradeUpdate(s.EmitTradeUpdate)
matching.OnOrderUpdate(s.EmitOrderUpdate)
matching.OnBalanceUpdate(s.EmitBalanceUpdate)
s.exchange.matchingBooks[symbol] = matching
}
// assign user data stream back
s.exchange.userDataStream = s
}
s.EmitConnect()
s.EmitStart()
if s.publicOnly {
go func() {
log.Infof("querying klines from database...")
klineC, errC := s.exchange.srv.QueryKLinesCh(s.exchange.startTime, s.exchange.endTime, s.exchange, symbols, intervals)
numKlines := 0
for k := range klineC {
if k.Interval == types.Interval1m {
matching, ok := s.exchange.matchingBook(k.Symbol)
if !ok {
log.Errorf("matching book of %s is not initialized", k.Symbol)
continue
}
2021-10-05 14:06:36 +00:00
// here we generate trades and order updates
matching.processKLine(k)
numKlines++
}
s.EmitKLineClosed(k)
}
if err := <-errC; err != nil {
log.WithError(err).Error("backtest data feed error")
}
2020-11-07 12:11:07 +00:00
if numKlines == 0 {
log.Error("kline data is empty, make sure you have sync the exchange market data")
}
if err := s.Close(); err != nil {
log.WithError(err).Error("stream close error")
}
}()
}
return nil
}
2020-12-21 07:45:40 +00:00
func (s *Stream) SetPublicOnly() {
s.publicOnly = true
2020-12-21 07:45:40 +00:00
return
}
func (s *Stream) Close() error {
2020-11-07 12:11:07 +00:00
close(s.exchange.doneC)
return nil
}