2022-06-18 08:31:53 +00:00
|
|
|
package bbgo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-07-04 12:13:54 +00:00
|
|
|
"fmt"
|
2022-06-27 10:17:57 +00:00
|
|
|
"strings"
|
2022-06-18 08:31:53 +00:00
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
type NotifyFunc func(obj interface{}, args ...interface{})
|
|
|
|
|
|
|
|
// GeneralOrderExecutor implements the general order executor for strategy
|
|
|
|
type GeneralOrderExecutor struct {
|
|
|
|
session *ExchangeSession
|
|
|
|
symbol string
|
|
|
|
strategy string
|
|
|
|
strategyInstanceID string
|
|
|
|
position *types.Position
|
|
|
|
activeMakerOrders *ActiveOrderBook
|
|
|
|
orderStore *OrderStore
|
|
|
|
tradeCollector *TradeCollector
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewGeneralOrderExecutor(session *ExchangeSession, symbol, strategy, strategyInstanceID string, position *types.Position) *GeneralOrderExecutor {
|
|
|
|
// Always update the position fields
|
|
|
|
position.Strategy = strategy
|
|
|
|
position.StrategyInstanceID = strategyInstanceID
|
|
|
|
|
|
|
|
orderStore := NewOrderStore(symbol)
|
|
|
|
return &GeneralOrderExecutor{
|
|
|
|
session: session,
|
|
|
|
symbol: symbol,
|
|
|
|
strategy: strategy,
|
|
|
|
strategyInstanceID: strategyInstanceID,
|
|
|
|
position: position,
|
|
|
|
activeMakerOrders: NewActiveOrderBook(symbol),
|
|
|
|
orderStore: orderStore,
|
|
|
|
tradeCollector: NewTradeCollector(symbol, position, orderStore),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-28 10:34:12 +00:00
|
|
|
func (e *GeneralOrderExecutor) ActiveMakerOrders() *ActiveOrderBook {
|
|
|
|
return e.activeMakerOrders
|
|
|
|
}
|
|
|
|
|
2022-06-18 08:31:53 +00:00
|
|
|
func (e *GeneralOrderExecutor) BindEnvironment(environ *Environment) {
|
|
|
|
e.tradeCollector.OnProfit(func(trade types.Trade, profit *types.Profit) {
|
|
|
|
environ.RecordPosition(e.position, trade, profit)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *GeneralOrderExecutor) BindTradeStats(tradeStats *types.TradeStats) {
|
|
|
|
e.tradeCollector.OnProfit(func(trade types.Trade, profit *types.Profit) {
|
|
|
|
if profit == nil {
|
|
|
|
return
|
|
|
|
}
|
2022-07-05 03:14:50 +00:00
|
|
|
|
|
|
|
tradeStats.Add(profit)
|
2022-06-18 08:31:53 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-06-19 04:29:36 +00:00
|
|
|
func (e *GeneralOrderExecutor) BindProfitStats(profitStats *types.ProfitStats) {
|
2022-06-18 08:31:53 +00:00
|
|
|
e.tradeCollector.OnProfit(func(trade types.Trade, profit *types.Profit) {
|
|
|
|
profitStats.AddTrade(trade)
|
|
|
|
if profit == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
profitStats.AddProfit(*profit)
|
2022-07-08 08:43:32 +00:00
|
|
|
|
|
|
|
Notify(profit)
|
2022-07-01 09:32:40 +00:00
|
|
|
Notify(profitStats)
|
2022-06-18 08:31:53 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-06-19 05:01:22 +00:00
|
|
|
func (e *GeneralOrderExecutor) Bind() {
|
2022-06-18 08:31:53 +00:00
|
|
|
e.activeMakerOrders.BindStream(e.session.UserDataStream)
|
|
|
|
e.orderStore.BindStream(e.session.UserDataStream)
|
|
|
|
|
|
|
|
// trade notify
|
|
|
|
e.tradeCollector.OnTrade(func(trade types.Trade, profit, netProfit fixedpoint.Value) {
|
2022-06-19 05:01:22 +00:00
|
|
|
Notify(trade)
|
2022-06-18 08:31:53 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
e.tradeCollector.OnPositionUpdate(func(position *types.Position) {
|
|
|
|
log.Infof("position changed: %s", position)
|
2022-06-19 05:01:22 +00:00
|
|
|
Notify(position)
|
2022-06-18 08:31:53 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
e.tradeCollector.BindStream(e.session.UserDataStream)
|
|
|
|
}
|
|
|
|
|
2022-06-30 16:57:19 +00:00
|
|
|
// CancelOrders cancels the given order objects directly
|
2022-06-26 08:13:58 +00:00
|
|
|
func (e *GeneralOrderExecutor) CancelOrders(ctx context.Context, orders ...types.Order) error {
|
2022-08-11 05:49:16 +00:00
|
|
|
err := e.session.Exchange.CancelOrders(ctx, orders...)
|
|
|
|
if err != nil { // Retry once
|
|
|
|
err = e.session.Exchange.CancelOrders(ctx, orders...)
|
|
|
|
}
|
|
|
|
return err
|
2022-06-26 08:13:58 +00:00
|
|
|
}
|
|
|
|
|
2022-06-19 07:57:59 +00:00
|
|
|
func (e *GeneralOrderExecutor) SubmitOrders(ctx context.Context, submitOrders ...types.SubmitOrder) (types.OrderSlice, error) {
|
2022-06-18 08:31:53 +00:00
|
|
|
formattedOrders, err := e.session.FormatOrders(submitOrders)
|
|
|
|
if err != nil {
|
2022-06-19 07:57:59 +00:00
|
|
|
return nil, err
|
2022-06-18 08:31:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
createdOrders, err := e.session.Exchange.SubmitOrders(ctx, formattedOrders...)
|
|
|
|
if err != nil {
|
2022-08-11 05:49:16 +00:00
|
|
|
// Retry once
|
|
|
|
createdOrders, err = e.session.Exchange.SubmitOrders(ctx, formattedOrders...)
|
|
|
|
if err != nil {
|
|
|
|
err = fmt.Errorf("can not place orders: %w", err)
|
|
|
|
}
|
2022-06-18 08:31:53 +00:00
|
|
|
}
|
2022-08-10 11:36:30 +00:00
|
|
|
// FIXME: map by price and volume
|
|
|
|
for i := 0; i < len(createdOrders); i++ {
|
|
|
|
createdOrders[i].Tag = formattedOrders[i].Tag
|
|
|
|
}
|
2022-06-18 08:31:53 +00:00
|
|
|
|
|
|
|
e.orderStore.Add(createdOrders...)
|
|
|
|
e.activeMakerOrders.Add(createdOrders...)
|
|
|
|
e.tradeCollector.Process()
|
2022-06-19 07:57:59 +00:00
|
|
|
return createdOrders, err
|
2022-06-18 08:31:53 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 16:57:19 +00:00
|
|
|
// GracefulCancelActiveOrderBook cancels the orders from the active orderbook.
|
|
|
|
func (e *GeneralOrderExecutor) GracefulCancelActiveOrderBook(ctx context.Context, activeOrders *ActiveOrderBook) error {
|
2022-07-14 03:46:19 +00:00
|
|
|
if activeOrders.NumOfOrders() == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2022-06-30 16:57:19 +00:00
|
|
|
if err := activeOrders.GracefulCancel(ctx, e.session.Exchange); err != nil {
|
2022-08-11 05:49:16 +00:00
|
|
|
// Retry once
|
|
|
|
if err = activeOrders.GracefulCancel(ctx, e.session.Exchange); err != nil {
|
|
|
|
return fmt.Errorf("graceful cancel order error: %w", err)
|
|
|
|
}
|
2022-06-18 08:31:53 +00:00
|
|
|
}
|
|
|
|
|
2022-06-19 05:40:10 +00:00
|
|
|
e.tradeCollector.Process()
|
2022-06-18 08:31:53 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-09-01 04:09:03 +00:00
|
|
|
func (e *GeneralOrderExecutor) Cancel(ctx context.Context, order types.Order) error {
|
|
|
|
if e.activeMakerOrders.NumOfOrders() == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err := e.activeMakerOrders.Cancel(ctx, e.session.Exchange, order); err != nil {
|
|
|
|
// Retry once
|
|
|
|
if err = e.activeMakerOrders.Cancel(ctx, e.session.Exchange, order); err != nil {
|
|
|
|
return fmt.Errorf("cancel order error: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
e.tradeCollector.Process()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-06-30 16:57:19 +00:00
|
|
|
// GracefulCancel cancels all active maker orders
|
|
|
|
func (e *GeneralOrderExecutor) GracefulCancel(ctx context.Context) error {
|
|
|
|
return e.GracefulCancelActiveOrderBook(ctx, e.activeMakerOrders)
|
|
|
|
}
|
|
|
|
|
2022-06-27 10:17:57 +00:00
|
|
|
func (e *GeneralOrderExecutor) ClosePosition(ctx context.Context, percentage fixedpoint.Value, tags ...string) error {
|
2022-06-19 03:20:29 +00:00
|
|
|
submitOrder := e.position.NewMarketCloseOrder(percentage)
|
2022-06-18 08:31:53 +00:00
|
|
|
if submitOrder == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-07-28 02:27:04 +00:00
|
|
|
log.Infof("closing %s position with tags: %v", e.symbol, tags)
|
2022-06-27 10:17:57 +00:00
|
|
|
submitOrder.Tag = strings.Join(tags, ",")
|
2022-06-19 07:57:59 +00:00
|
|
|
_, err := e.SubmitOrders(ctx, *submitOrder)
|
|
|
|
return err
|
2022-06-18 08:31:53 +00:00
|
|
|
}
|
2022-06-19 05:40:10 +00:00
|
|
|
|
|
|
|
func (e *GeneralOrderExecutor) TradeCollector() *TradeCollector {
|
|
|
|
return e.tradeCollector
|
|
|
|
}
|
2022-06-26 08:13:58 +00:00
|
|
|
|
|
|
|
func (e *GeneralOrderExecutor) Session() *ExchangeSession {
|
|
|
|
return e.session
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *GeneralOrderExecutor) Position() *types.Position {
|
|
|
|
return e.position
|
|
|
|
}
|