bbgo_origin/pkg/cmd/orderbook.go

160 lines
4.0 KiB
Go
Raw Normal View History

package cmd
import (
"context"
"fmt"
"syscall"
"time"
2021-03-27 10:07:35 +00:00
"github.com/pkg/errors"
2021-03-02 14:18:41 +00:00
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
2021-03-27 10:07:35 +00:00
"github.com/c9s/bbgo/pkg/bbgo"
"github.com/c9s/bbgo/pkg/cmd/cmdutil"
"github.com/c9s/bbgo/pkg/types"
)
// go run ./cmd/bbgo orderbook --session=ftx --symbol=BTCUSDT
var orderbookCmd = &cobra.Command{
2021-03-15 02:23:53 +00:00
Use: "orderbook",
Short: "connect to the order book market data streaming service of an exchange",
RunE: func(cmd *cobra.Command, args []string) error {
ctx := context.Background()
2021-03-15 02:23:53 +00:00
sessionName, err := cmd.Flags().GetString("session")
if err != nil {
return err
}
symbol, err := cmd.Flags().GetString("symbol")
if err != nil {
2021-03-15 02:23:53 +00:00
return fmt.Errorf("can not get the symbol from flags: %w", err)
}
2021-03-15 02:23:53 +00:00
2021-02-28 13:48:42 +00:00
if symbol == "" {
2021-03-15 02:23:53 +00:00
return fmt.Errorf("--symbol option is required")
2021-02-28 13:48:42 +00:00
}
if userConfig == nil {
return errors.New("--config option or config file is missing")
}
environ := bbgo.NewEnvironment()
if err := environ.ConfigureExchangeSessions(userConfig); err != nil {
return err
}
session, ok := environ.Session(sessionName)
if !ok {
return fmt.Errorf("session %s not found", sessionName)
}
orderBook := types.NewMutexOrderBook(symbol)
s := session.Exchange.NewStream()
s.SetPublicOnly()
s.Subscribe(types.BookChannel, symbol, types.SubscribeOptions{})
2021-05-22 03:36:58 +00:00
s.OnBookSnapshot(func(book types.SliceOrderBook) {
2021-03-04 00:55:52 +00:00
log.Infof("orderbook snapshot: %s", book.String())
orderBook.Load(book)
if ok, err := orderBook.IsValid() ; !ok {
log.WithError(err).Panicf("invalid error book snapshot")
}
if bid, ask, ok := orderBook.BestBidAndAsk() ; ok {
log.Infof("ASK | %f x %f / %f x %f | BID",
ask.Volume.Float64(), ask.Price.Float64(),
bid.Price.Float64(), bid.Volume.Float64())
}
2021-03-04 00:55:52 +00:00
})
2021-05-22 03:36:58 +00:00
s.OnBookUpdate(func(book types.SliceOrderBook) {
2021-03-04 00:55:52 +00:00
log.Infof("orderbook update: %s", book.String())
orderBook.Update(book)
if bid, ask, ok := orderBook.BestBidAndAsk() ; ok {
log.Infof("ASK | %f x %f / %f x %f | BID",
ask.Volume.Float64(), ask.Price.Float64(),
bid.Price.Float64(), bid.Volume.Float64())
}
2021-03-02 14:18:41 +00:00
})
2021-03-15 02:23:53 +00:00
log.Infof("connecting...")
if err := s.Connect(ctx); err != nil {
return fmt.Errorf("failed to connect to %s", sessionName)
}
log.Infof("connected")
defer func() {
log.Infof("closing connection...")
if err := s.Close(); err != nil {
log.WithError(err).Errorf("connection close error")
}
time.Sleep(1 * time.Second)
}()
cmdutil.WaitForSignal(ctx, syscall.SIGINT, syscall.SIGTERM)
return nil
},
}
2021-03-28 06:42:54 +00:00
// go run ./cmd/bbgo orderupdate --session=ftx
2021-03-27 10:07:35 +00:00
var orderUpdateCmd = &cobra.Command{
Use: "orderupdate",
RunE: func(cmd *cobra.Command, args []string) error {
ctx := context.Background()
if userConfig == nil {
return errors.New("--config option or config file is missing")
2021-03-27 10:07:35 +00:00
}
environ := bbgo.NewEnvironment()
if err := environ.ConfigureExchangeSessions(userConfig); err != nil {
return err
}
sessionName, err := cmd.Flags().GetString("session")
if err != nil {
return err
}
session, ok := environ.Session(sessionName)
if !ok {
return fmt.Errorf("session %s not found", sessionName)
}
s := session.Exchange.NewStream()
s.OnOrderUpdate(func(order types.Order) {
log.Infof("order update: %+v", order)
})
log.Infof("connecting...")
if err := s.Connect(ctx); err != nil {
return fmt.Errorf("failed to connect to %s", sessionName)
}
2021-03-27 10:07:35 +00:00
log.Infof("connected")
defer func() {
log.Infof("closing connection...")
if err := s.Close(); err != nil {
log.WithError(err).Errorf("connection close error")
}
time.Sleep(1 * time.Second)
}()
2021-03-27 10:07:35 +00:00
cmdutil.WaitForSignal(ctx, syscall.SIGINT, syscall.SIGTERM)
return nil
},
}
func init() {
orderbookCmd.Flags().String("session", "", "session name")
2021-03-15 02:23:53 +00:00
orderbookCmd.Flags().String("symbol", "", "the trading pair. e.g, BTCUSDT, LTCUSDT...")
2021-03-27 10:07:35 +00:00
orderUpdateCmd.Flags().String("session", "", "session name")
RootCmd.AddCommand(orderbookCmd)
2021-03-27 10:07:35 +00:00
RootCmd.AddCommand(orderUpdateCmd)
}