2020-11-02 14:14:01 +00:00
|
|
|
package bbgo
|
|
|
|
|
|
|
|
import (
|
2022-01-06 16:10:40 +00:00
|
|
|
"context"
|
2021-03-17 17:15:06 +00:00
|
|
|
"encoding/json"
|
2022-01-06 16:10:40 +00:00
|
|
|
"time"
|
2021-03-17 17:15:06 +00:00
|
|
|
|
2022-10-17 04:38:58 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-11-10 06:19:33 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2020-11-02 14:14:01 +00:00
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
2022-06-09 18:51:20 +00:00
|
|
|
const CancelOrderWaitTime = 20 * time.Millisecond
|
2022-01-14 16:17:52 +00:00
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
// ActiveOrderBook manages the local active order books.
|
|
|
|
//go:generate callbackgen -type ActiveOrderBook
|
|
|
|
type ActiveOrderBook struct {
|
2022-01-06 16:10:40 +00:00
|
|
|
Symbol string
|
2022-06-05 10:12:26 +00:00
|
|
|
orders *types.SyncOrderMap
|
2020-11-11 15:18:53 +00:00
|
|
|
filledCallbacks []func(o types.Order)
|
2020-11-02 14:14:01 +00:00
|
|
|
}
|
|
|
|
|
2022-06-05 22:57:25 +00:00
|
|
|
func NewActiveOrderBook(symbol string) *ActiveOrderBook {
|
2022-06-05 21:43:38 +00:00
|
|
|
return &ActiveOrderBook{
|
2022-01-06 16:10:40 +00:00
|
|
|
Symbol: symbol,
|
2022-06-05 10:12:26 +00:00
|
|
|
orders: types.NewSyncOrderMap(),
|
2020-11-02 14:14:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) MarshalJSON() ([]byte, error) {
|
2021-03-17 17:15:06 +00:00
|
|
|
orders := b.Backup()
|
|
|
|
return json.Marshal(orders)
|
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) Backup() []types.SubmitOrder {
|
2022-06-05 10:12:26 +00:00
|
|
|
return b.orders.Backup()
|
2021-03-15 10:25:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) BindStream(stream types.Stream) {
|
2020-11-11 15:18:53 +00:00
|
|
|
stream.OnOrderUpdate(b.orderUpdateHandler)
|
|
|
|
}
|
|
|
|
|
2022-09-01 04:09:03 +00:00
|
|
|
func (b *ActiveOrderBook) waitClear(ctx context.Context, order types.Order, waitTime, timeout time.Duration) (bool, error) {
|
|
|
|
if !b.Exists(order) {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
timeoutC := time.After(timeout)
|
|
|
|
for {
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
clear := !b.Exists(order)
|
|
|
|
select {
|
|
|
|
case <-timeoutC:
|
|
|
|
return clear, nil
|
|
|
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
return clear, ctx.Err()
|
|
|
|
|
|
|
|
default:
|
|
|
|
if clear {
|
|
|
|
return clear, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) waitAllClear(ctx context.Context, waitTime, timeout time.Duration) (bool, error) {
|
2022-01-15 17:34:28 +00:00
|
|
|
numOfOrders := b.NumOfOrders()
|
|
|
|
clear := numOfOrders == 0
|
|
|
|
if clear {
|
|
|
|
return clear, nil
|
|
|
|
}
|
|
|
|
|
2022-01-14 16:17:52 +00:00
|
|
|
timeoutC := time.After(timeout)
|
|
|
|
for {
|
|
|
|
time.Sleep(waitTime)
|
2022-01-15 17:34:28 +00:00
|
|
|
numOfOrders = b.NumOfOrders()
|
|
|
|
clear = numOfOrders == 0
|
2022-01-14 16:17:52 +00:00
|
|
|
select {
|
|
|
|
case <-timeoutC:
|
|
|
|
return clear, nil
|
|
|
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
return clear, ctx.Err()
|
|
|
|
|
|
|
|
default:
|
|
|
|
if clear {
|
|
|
|
return clear, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-17 04:38:58 +00:00
|
|
|
// Cancel orders without confirmation
|
2022-11-02 04:25:34 +00:00
|
|
|
func (b *ActiveOrderBook) FastCancel(ctx context.Context, ex types.Exchange, orders ...types.Order) error {
|
2022-10-17 04:38:58 +00:00
|
|
|
// if no orders are given, set to cancelAll
|
|
|
|
if len(orders) == 0 {
|
|
|
|
orders = b.Orders()
|
|
|
|
} else {
|
|
|
|
// simple check on given input
|
|
|
|
for _, o := range orders {
|
|
|
|
if o.Symbol != b.Symbol {
|
|
|
|
return errors.New("[ActiveOrderBook] cancel " + b.Symbol + " orderbook with different symbol: " + o.Symbol)
|
|
|
|
}
|
|
|
|
}
|
2022-09-01 04:09:03 +00:00
|
|
|
}
|
|
|
|
// optimize order cancel for back-testing
|
|
|
|
if IsBackTesting {
|
2022-10-17 04:38:58 +00:00
|
|
|
return ex.CancelOrders(context.Background(), orders...)
|
2022-09-01 04:09:03 +00:00
|
|
|
}
|
2022-11-02 04:25:34 +00:00
|
|
|
|
2022-10-17 04:38:58 +00:00
|
|
|
log.Debugf("[ActiveOrderBook] no wait cancelling %s orders...", b.Symbol)
|
|
|
|
// since ctx might be canceled, we should use background context here
|
|
|
|
if err := ex.CancelOrders(context.Background(), orders...); err != nil {
|
|
|
|
log.WithError(err).Errorf("[ActiveOrderBook] no wait can not cancel %s orders", b.Symbol)
|
|
|
|
}
|
2022-11-02 04:25:34 +00:00
|
|
|
|
2022-10-17 04:38:58 +00:00
|
|
|
for _, o := range orders {
|
|
|
|
b.Remove(o)
|
2022-09-01 04:09:03 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-06 16:10:40 +00:00
|
|
|
// GracefulCancel cancels the active orders gracefully
|
2022-10-17 04:38:58 +00:00
|
|
|
func (b *ActiveOrderBook) GracefulCancel(ctx context.Context, ex types.Exchange, orders ...types.Order) error {
|
|
|
|
// if no orders are given, set to cancelAll
|
|
|
|
if len(orders) == 0 {
|
|
|
|
orders = b.Orders()
|
|
|
|
} else {
|
|
|
|
// simple check on given input
|
|
|
|
for _, o := range orders {
|
|
|
|
if b.Symbol != "" && o.Symbol != b.Symbol {
|
|
|
|
return errors.New("[ActiveOrderBook] cancel " + b.Symbol + " orderbook with different symbol: " + o.Symbol)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-20 17:12:16 +00:00
|
|
|
// optimize order cancel for back-testing
|
|
|
|
if IsBackTesting {
|
|
|
|
return ex.CancelOrders(context.Background(), orders...)
|
|
|
|
}
|
2022-06-09 17:21:59 +00:00
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
log.Debugf("[ActiveOrderBook] gracefully cancelling %s orders...", b.Symbol)
|
2022-06-20 17:12:16 +00:00
|
|
|
waitTime := CancelOrderWaitTime
|
2022-01-06 16:10:40 +00:00
|
|
|
|
2022-01-14 16:17:52 +00:00
|
|
|
startTime := time.Now()
|
2022-01-06 16:10:40 +00:00
|
|
|
// ensure every order is cancelled
|
2022-01-14 16:17:52 +00:00
|
|
|
for {
|
|
|
|
// Some orders in the variable are not created on the server side yet,
|
|
|
|
// If we cancel these orders directly, we will get an unsent order error
|
|
|
|
// We wait here for a while for server to create these orders.
|
2022-01-15 20:40:50 +00:00
|
|
|
// time.Sleep(SentOrderWaitTime)
|
2022-01-14 16:49:27 +00:00
|
|
|
|
|
|
|
// since ctx might be canceled, we should use background context here
|
|
|
|
if err := ex.CancelOrders(context.Background(), orders...); err != nil {
|
2022-06-05 21:43:38 +00:00
|
|
|
log.WithError(err).Errorf("[ActiveOrderBook] can not cancel %s orders", b.Symbol)
|
2022-01-06 16:10:40 +00:00
|
|
|
}
|
|
|
|
|
2022-06-09 17:21:59 +00:00
|
|
|
log.Debugf("[ActiveOrderBook] waiting %s for %s orders to be cancelled...", waitTime, b.Symbol)
|
2022-01-06 16:10:40 +00:00
|
|
|
|
2022-06-09 17:21:59 +00:00
|
|
|
clear, err := b.waitAllClear(ctx, waitTime, 5*time.Second)
|
2022-01-14 16:17:52 +00:00
|
|
|
if clear || err != nil {
|
|
|
|
break
|
2022-01-06 16:10:40 +00:00
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
log.Warnf("[ActiveOrderBook] %d %s orders are not cancelled yet:", b.NumOfOrders(), b.Symbol)
|
2022-01-14 16:17:52 +00:00
|
|
|
b.Print()
|
2022-01-06 16:10:40 +00:00
|
|
|
|
2022-01-14 16:17:52 +00:00
|
|
|
// verify the current open orders via the RESTful API
|
2022-06-05 21:43:38 +00:00
|
|
|
log.Warnf("[ActiveOrderBook] using REStful API to verify active orders...")
|
2022-08-04 13:12:58 +00:00
|
|
|
|
|
|
|
var symbols = map[string]struct{}{}
|
|
|
|
for _, order := range orders {
|
|
|
|
symbols[order.Symbol] = struct{}{}
|
|
|
|
|
2022-01-14 16:17:52 +00:00
|
|
|
}
|
2022-10-17 04:38:58 +00:00
|
|
|
var leftOrders []types.Order
|
2022-01-06 16:10:40 +00:00
|
|
|
|
2022-08-04 13:12:58 +00:00
|
|
|
for symbol := range symbols {
|
|
|
|
openOrders, err := ex.QueryOpenOrders(ctx, symbol)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Errorf("can not query %s open orders", symbol)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
openOrderStore := NewOrderStore(symbol)
|
|
|
|
openOrderStore.Add(openOrders...)
|
|
|
|
for _, o := range orders {
|
|
|
|
// if it's not on the order book (open orders), we should remove it from our local side
|
|
|
|
if !openOrderStore.Exists(o.OrderID) {
|
|
|
|
b.Remove(o)
|
2022-10-17 04:38:58 +00:00
|
|
|
} else {
|
|
|
|
leftOrders = append(leftOrders, o)
|
2022-08-04 13:12:58 +00:00
|
|
|
}
|
2022-01-06 16:10:40 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-17 04:38:58 +00:00
|
|
|
orders = leftOrders
|
2022-01-06 16:10:40 +00:00
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
log.Debugf("[ActiveOrderBook] all %s orders are cancelled successfully in %s", b.Symbol, time.Since(startTime))
|
2022-01-06 16:10:40 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) orderUpdateHandler(order types.Order) {
|
2022-06-05 10:12:26 +00:00
|
|
|
hasSymbol := len(b.Symbol) > 0
|
|
|
|
if hasSymbol && order.Symbol != b.Symbol {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-11 15:18:53 +00:00
|
|
|
switch order.Status {
|
|
|
|
case types.OrderStatusFilled:
|
|
|
|
// make sure we have the order and we remove it
|
|
|
|
if b.Remove(order) {
|
|
|
|
b.EmitFilled(order)
|
|
|
|
}
|
|
|
|
|
2022-01-10 04:29:19 +00:00
|
|
|
case types.OrderStatusPartiallyFilled, types.OrderStatusNew:
|
2020-11-11 15:18:53 +00:00
|
|
|
b.Update(order)
|
|
|
|
|
|
|
|
case types.OrderStatusCanceled, types.OrderStatusRejected:
|
2022-06-05 21:43:38 +00:00
|
|
|
log.Debugf("[ActiveOrderBook] order status %s, removing order %s", order.Status, order)
|
2020-11-11 15:18:53 +00:00
|
|
|
b.Remove(order)
|
2021-05-09 11:44:43 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
log.Warnf("unhandled order status: %s", order.Status)
|
2020-11-11 15:18:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) Print() {
|
2022-06-05 10:12:26 +00:00
|
|
|
for _, o := range b.orders.Orders() {
|
|
|
|
log.Infof("%s", o)
|
2020-11-02 14:14:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) Update(orders ...types.Order) {
|
2022-06-05 10:12:26 +00:00
|
|
|
hasSymbol := len(b.Symbol) > 0
|
2020-11-07 07:07:06 +00:00
|
|
|
for _, order := range orders {
|
2022-06-05 10:12:26 +00:00
|
|
|
if hasSymbol && b.Symbol == order.Symbol {
|
|
|
|
b.orders.Update(order)
|
2020-11-07 07:07:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) Add(orders ...types.Order) {
|
2022-06-05 10:12:26 +00:00
|
|
|
hasSymbol := len(b.Symbol) > 0
|
2020-11-02 14:14:01 +00:00
|
|
|
for _, order := range orders {
|
2022-06-05 10:12:26 +00:00
|
|
|
if hasSymbol && b.Symbol == order.Symbol {
|
|
|
|
b.orders.Add(order)
|
2020-11-02 14:14:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) Exists(order types.Order) bool {
|
2022-06-05 10:12:26 +00:00
|
|
|
return b.orders.Exists(order.OrderID)
|
2021-05-22 09:44:07 +00:00
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) Remove(order types.Order) bool {
|
2022-06-05 10:12:26 +00:00
|
|
|
return b.orders.Remove(order.OrderID)
|
2020-11-02 14:14:01 +00:00
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) NumOfOrders() int {
|
2022-06-05 10:12:26 +00:00
|
|
|
return b.orders.Len()
|
2021-05-13 11:41:05 +00:00
|
|
|
}
|
|
|
|
|
2022-06-05 21:43:38 +00:00
|
|
|
func (b *ActiveOrderBook) Orders() types.OrderSlice {
|
2022-06-05 10:12:26 +00:00
|
|
|
return b.orders.Orders()
|
2020-11-02 14:14:01 +00:00
|
|
|
}
|