mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
pkg/exchange: integrate the v5 query trade api
This commit is contained in:
parent
d2c1ae0642
commit
eb2a7421da
|
@ -325,6 +325,42 @@ func v3ToGlobalTrade(trade v3.Trade) (*types.Trade, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func toGlobalTrade(trade bybitapi.Trade, feeDetail symbolFeeDetail) (*types.Trade, error) {
|
||||||
|
side, err := toGlobalSideType(trade.Side)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("unexpected side: %s, err: %w", trade.Side, err)
|
||||||
|
}
|
||||||
|
orderIdNum, err := strconv.ParseUint(trade.OrderId, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("unexpected order id: %s, err: %w", trade.OrderId, err)
|
||||||
|
}
|
||||||
|
tradeIdNum, err := strconv.ParseUint(trade.ExecId, 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("unexpected trade id: %s, err: %w", trade.ExecId, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
fc, _ := calculateFee(trade, feeDetail)
|
||||||
|
|
||||||
|
return &types.Trade{
|
||||||
|
ID: tradeIdNum,
|
||||||
|
OrderID: orderIdNum,
|
||||||
|
Exchange: types.ExchangeBybit,
|
||||||
|
Price: trade.ExecPrice,
|
||||||
|
Quantity: trade.ExecQty,
|
||||||
|
QuoteQuantity: trade.ExecPrice.Mul(trade.ExecQty),
|
||||||
|
Symbol: trade.Symbol,
|
||||||
|
Side: side,
|
||||||
|
IsBuyer: side == types.SideTypeBuy,
|
||||||
|
IsMaker: trade.IsMaker,
|
||||||
|
Time: types.Time(trade.ExecTime),
|
||||||
|
Fee: trade.ExecFee,
|
||||||
|
FeeCurrency: fc,
|
||||||
|
IsMargin: false,
|
||||||
|
IsFutures: false,
|
||||||
|
IsIsolated: false,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
func toGlobalBalanceMap(events []bybitapi.WalletBalances) types.BalanceMap {
|
func toGlobalBalanceMap(events []bybitapi.WalletBalances) types.BalanceMap {
|
||||||
bm := types.BalanceMap{}
|
bm := types.BalanceMap{}
|
||||||
for _, event := range events {
|
for _, event := range events {
|
||||||
|
|
|
@ -12,7 +12,6 @@ import (
|
||||||
"golang.org/x/time/rate"
|
"golang.org/x/time/rate"
|
||||||
|
|
||||||
"github.com/c9s/bbgo/pkg/exchange/bybit/bybitapi"
|
"github.com/c9s/bbgo/pkg/exchange/bybit/bybitapi"
|
||||||
v3 "github.com/c9s/bbgo/pkg/exchange/bybit/bybitapi/v3"
|
|
||||||
"github.com/c9s/bbgo/pkg/fixedpoint"
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
||||||
"github.com/c9s/bbgo/pkg/types"
|
"github.com/c9s/bbgo/pkg/types"
|
||||||
)
|
)
|
||||||
|
@ -20,9 +19,10 @@ import (
|
||||||
const (
|
const (
|
||||||
maxOrderIdLen = 36
|
maxOrderIdLen = 36
|
||||||
defaultQueryLimit = 50
|
defaultQueryLimit = 50
|
||||||
|
defaultQueryTradeLimit = 100
|
||||||
defaultKLineLimit = 1000
|
defaultKLineLimit = 1000
|
||||||
|
|
||||||
halfYearDuration = 6 * 30 * 24 * time.Hour
|
queryTradeDurationLimit = 7 * 24 * time.Hour
|
||||||
)
|
)
|
||||||
|
|
||||||
// https://bybit-exchange.github.io/docs/zh-TW/v5/rate-limit
|
// https://bybit-exchange.github.io/docs/zh-TW/v5/rate-limit
|
||||||
|
@ -52,7 +52,13 @@ var (
|
||||||
type Exchange struct {
|
type Exchange struct {
|
||||||
key, secret string
|
key, secret string
|
||||||
client *bybitapi.RestClient
|
client *bybitapi.RestClient
|
||||||
v3client *v3.Client
|
marketsInfo types.MarketMap
|
||||||
|
|
||||||
|
// feeRateProvider provides the fee rate and fee currency for each symbol.
|
||||||
|
// Because the bybit exchange does not provide a fee currency on traditional SPOT accounts, we need to query the marker
|
||||||
|
// fee rate to get the fee currency.
|
||||||
|
// https://bybit-exchange.github.io/docs/v5/enum#spot-fee-currency-instruction
|
||||||
|
feeRateProvider FeeRatePoller
|
||||||
}
|
}
|
||||||
|
|
||||||
func New(key, secret string) (*Exchange, error) {
|
func New(key, secret string) (*Exchange, error) {
|
||||||
|
@ -60,18 +66,25 @@ func New(key, secret string) (*Exchange, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
ex := &Exchange{
|
||||||
if len(key) > 0 && len(secret) > 0 {
|
|
||||||
client.Auth(key, secret)
|
|
||||||
}
|
|
||||||
|
|
||||||
return &Exchange{
|
|
||||||
key: key,
|
key: key,
|
||||||
// pragma: allowlist nextline secret
|
// pragma: allowlist nextline secret
|
||||||
secret: secret,
|
secret: secret,
|
||||||
client: client,
|
client: client,
|
||||||
v3client: v3.NewClient(client),
|
}
|
||||||
}, nil
|
if len(key) > 0 && len(secret) > 0 {
|
||||||
|
client.Auth(key, secret)
|
||||||
|
ex.feeRateProvider = newFeeRatePoller(ex)
|
||||||
|
|
||||||
|
ctx, cancel := context.WithTimeoutCause(context.Background(), 5*time.Second, errors.New("query markets timeout"))
|
||||||
|
defer cancel()
|
||||||
|
ex.marketsInfo, err = ex.QueryMarkets(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to query markets, err: %w", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return ex, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *Exchange) Name() types.ExchangeName {
|
func (e *Exchange) Name() types.ExchangeName {
|
||||||
|
@ -226,35 +239,14 @@ func (e *Exchange) QueryOrderTrades(ctx context.Context, q types.OrderQuery) (tr
|
||||||
if len(q.OrderID) == 0 {
|
if len(q.OrderID) == 0 {
|
||||||
return nil, errors.New("orderID is required parameter")
|
return nil, errors.New("orderID is required parameter")
|
||||||
}
|
}
|
||||||
req := e.v3client.NewGetTradesRequest().OrderId(q.OrderID)
|
req := e.client.NewGetExecutionListRequest().OrderId(q.OrderID)
|
||||||
|
|
||||||
if len(q.Symbol) != 0 {
|
if len(q.Symbol) != 0 {
|
||||||
req.Symbol(q.Symbol)
|
req.Symbol(q.Symbol)
|
||||||
}
|
}
|
||||||
|
req.Limit(defaultQueryTradeLimit)
|
||||||
|
|
||||||
if err := queryOrderTradeRateLimiter.Wait(ctx); err != nil {
|
return e.queryTrades(ctx, req)
|
||||||
return nil, fmt.Errorf("trade rate limiter wait error: %w", err)
|
|
||||||
}
|
|
||||||
response, err := req.Do(ctx)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("failed to query order trades, err: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var errs error
|
|
||||||
for _, trade := range response.List {
|
|
||||||
res, err := v3ToGlobalTrade(trade)
|
|
||||||
if err != nil {
|
|
||||||
errs = multierr.Append(errs, err)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
trades = append(trades, *res)
|
|
||||||
}
|
|
||||||
|
|
||||||
if errs != nil {
|
|
||||||
return nil, errs
|
|
||||||
}
|
|
||||||
|
|
||||||
return trades, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *Exchange) SubmitOrder(ctx context.Context, order types.SubmitOrder) (*types.Order, error) {
|
func (e *Exchange) SubmitOrder(ctx context.Context, order types.SubmitOrder) (*types.Order, error) {
|
||||||
|
@ -432,32 +424,65 @@ func (e *Exchange) QueryClosedOrders(
|
||||||
return types.SortOrdersAscending(orders), nil
|
return types.SortOrdersAscending(orders), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
func (e *Exchange) queryTrades(ctx context.Context, req *bybitapi.GetExecutionListRequest) (trades []types.Trade, err error) {
|
||||||
QueryTrades queries trades by time range or trade id range.
|
cursor := ""
|
||||||
If options.StartTime is not specified, you can only query for records in the last 7 days.
|
for {
|
||||||
If you want to query for records older than 7 days, options.StartTime is required.
|
if len(cursor) != 0 {
|
||||||
It supports to query records up to 180 days.
|
req = req.Cursor(cursor)
|
||||||
|
}
|
||||||
|
|
||||||
** Here includes MakerRebate. If needed, let's discuss how to modify it to return in trade. **
|
res, err := req.Do(ctx)
|
||||||
** StartTime and EndTime are inclusive. **
|
if err != nil {
|
||||||
** StartTime and EndTime cannot exceed 180 days. **
|
return nil, fmt.Errorf("failed to query trades, err: %w", err)
|
||||||
** StartTime, EndTime, FromTradeId can be used together. **
|
}
|
||||||
** If the `FromTradeId` is passed, and `ToTradeId` is null, then the result is sorted by tradeId in `ascend`.
|
|
||||||
Otherwise, the result is sorted by tradeId in `descend`. **
|
for _, trade := range res.List {
|
||||||
|
feeRate, err := pollAndGetFeeRate(ctx, trade.Symbol, e.feeRateProvider, e.marketsInfo)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to get fee rate, err: %v", err)
|
||||||
|
}
|
||||||
|
trade, err := toGlobalTrade(trade, feeRate)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to convert trade, err: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
trades = append(trades, *trade)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(res.NextPageCursor) == 0 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
cursor = res.NextPageCursor
|
||||||
|
}
|
||||||
|
|
||||||
|
return trades, nil
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
QueryTrades queries trades by time range.
|
||||||
|
** startTime and endTime are not passed, return 7 days by default **
|
||||||
|
** Only startTime is passed, return range between startTime and startTime+7 days **
|
||||||
|
** Only endTime is passed, return range between endTime-7 days and endTime **
|
||||||
|
** If both are passed, the rule is endTime - startTime <= 7 days **
|
||||||
*/
|
*/
|
||||||
func (e *Exchange) QueryTrades(ctx context.Context, symbol string, options *types.TradeQueryOptions) (trades []types.Trade, err error) {
|
func (e *Exchange) QueryTrades(ctx context.Context, symbol string, options *types.TradeQueryOptions) (trades []types.Trade, err error) {
|
||||||
// using v3 client, since the v5 API does not support feeCurrency.
|
req := e.client.NewGetExecutionListRequest()
|
||||||
req := e.v3client.NewGetTradesRequest()
|
|
||||||
req.Symbol(symbol)
|
req.Symbol(symbol)
|
||||||
|
|
||||||
// If `lastTradeId` is given and greater than 0, the query will use it as a condition and the retrieved result will be
|
if options.StartTime != nil && options.EndTime != nil {
|
||||||
// in `ascending` order. We can use `lastTradeId` to retrieve all the data. So we hack it to '1' if `lastTradeID` is '0'.
|
if options.EndTime.Before(*options.StartTime) {
|
||||||
// If 0 is given, it will not be used as a condition and the result will be in `descending` order. The FromTradeId
|
return nil, fmt.Errorf("end time is before start time, start time: %s, end time: %s", options.StartTime.String(), options.EndTime.String())
|
||||||
// option cannot be used to retrieve more data.
|
|
||||||
req.FromTradeId(strconv.FormatUint(options.LastTradeID, 10))
|
|
||||||
if options.LastTradeID == 0 {
|
|
||||||
req.FromTradeId("1")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if options.EndTime.Sub(*options.StartTime) > queryTradeDurationLimit {
|
||||||
|
newStartTime := options.EndTime.Add(-queryTradeDurationLimit)
|
||||||
|
|
||||||
|
log.Warnf("!!!BYBIT EXCHANGE API NOTICE!!! The time range exceeds the server boundary: %s, start time: %s, end time: %s, updated start time %s -> %s", queryTradeDurationLimit, options.StartTime.String(), options.EndTime.String(), options.StartTime.String(), newStartTime.String())
|
||||||
|
options.StartTime = &newStartTime
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if options.StartTime != nil {
|
if options.StartTime != nil {
|
||||||
req.StartTime(options.StartTime.UTC())
|
req.StartTime(options.StartTime.UTC())
|
||||||
}
|
}
|
||||||
|
@ -466,35 +491,13 @@ func (e *Exchange) QueryTrades(ctx context.Context, symbol string, options *type
|
||||||
}
|
}
|
||||||
|
|
||||||
limit := uint64(options.Limit)
|
limit := uint64(options.Limit)
|
||||||
if limit > defaultQueryLimit || limit <= 0 {
|
if limit > defaultQueryTradeLimit || limit <= 0 {
|
||||||
log.Debugf("the parameter limit exceeds the server boundary or is set to zero. changed to %d, original value: %d", defaultQueryLimit, options.Limit)
|
log.Debugf("the parameter limit exceeds the server boundary or is set to zero. changed to %d, original value: %d", defaultQueryTradeLimit, options.Limit)
|
||||||
limit = defaultQueryLimit
|
limit = defaultQueryTradeLimit
|
||||||
}
|
}
|
||||||
req.Limit(limit)
|
req.Limit(limit)
|
||||||
|
|
||||||
if err := queryOrderTradeRateLimiter.Wait(ctx); err != nil {
|
return e.queryTrades(ctx, req)
|
||||||
return nil, fmt.Errorf("trade rate limiter wait error: %w", err)
|
|
||||||
}
|
|
||||||
response, err := req.Do(ctx)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("failed to query trades, err: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var errs error
|
|
||||||
for _, trade := range response.List {
|
|
||||||
res, err := v3ToGlobalTrade(trade)
|
|
||||||
if err != nil {
|
|
||||||
errs = multierr.Append(errs, err)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
trades = append(trades, *res)
|
|
||||||
}
|
|
||||||
|
|
||||||
if errs != nil {
|
|
||||||
return nil, errs
|
|
||||||
}
|
|
||||||
|
|
||||||
return trades, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *Exchange) QueryAccount(ctx context.Context) (*types.Account, error) {
|
func (e *Exchange) QueryAccount(ctx context.Context) (*types.Account, error) {
|
||||||
|
@ -604,5 +607,5 @@ func (e *Exchange) GetAllFeeRates(ctx context.Context) (bybitapi.FeeRates, error
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *Exchange) NewStream() types.Stream {
|
func (e *Exchange) NewStream() types.Stream {
|
||||||
return NewStream(e.key, e.secret, e)
|
return NewStream(e.key, e.secret, e, e.feeRateProvider)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user