2021-12-10 13:43:40 +00:00
|
|
|
|
package kucoin
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2021-12-25 15:53:34 +00:00
|
|
|
|
"strconv"
|
2021-12-25 16:27:52 +00:00
|
|
|
|
"time"
|
2021-12-10 13:43:40 +00:00
|
|
|
|
|
2021-12-25 15:53:34 +00:00
|
|
|
|
"github.com/pkg/errors"
|
2021-12-10 13:43:40 +00:00
|
|
|
|
"github.com/sirupsen/logrus"
|
2021-12-25 17:27:22 +00:00
|
|
|
|
"go.uber.org/multierr"
|
2021-12-25 19:04:21 +00:00
|
|
|
|
"golang.org/x/time/rate"
|
2021-12-25 17:27:22 +00:00
|
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/exchange/kucoin/kucoinapi"
|
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
2021-12-10 13:43:40 +00:00
|
|
|
|
)
|
|
|
|
|
|
2021-12-25 16:27:52 +00:00
|
|
|
|
var ErrMissingSequence = errors.New("sequence is missing")
|
|
|
|
|
|
2021-12-10 13:43:40 +00:00
|
|
|
|
// OKB is the platform currency of OKEx, pre-allocate static string here
|
|
|
|
|
const KCS = "KCS"
|
|
|
|
|
|
|
|
|
|
var log = logrus.WithFields(logrus.Fields{
|
|
|
|
|
"exchange": "kucoin",
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
type Exchange struct {
|
|
|
|
|
key, secret, passphrase string
|
2021-12-21 16:30:16 +00:00
|
|
|
|
client *kucoinapi.RestClient
|
2021-12-10 13:43:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-21 16:30:16 +00:00
|
|
|
|
func New(key, secret, passphrase string) *Exchange {
|
|
|
|
|
client := kucoinapi.NewClient()
|
|
|
|
|
|
|
|
|
|
// for public access mode
|
|
|
|
|
if len(key) > 0 && len(secret) > 0 && len(passphrase) > 0 {
|
|
|
|
|
client.Auth(key, secret, passphrase)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &Exchange{
|
|
|
|
|
key: key,
|
|
|
|
|
secret: secret,
|
|
|
|
|
passphrase: passphrase,
|
|
|
|
|
client: client,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Exchange) Name() types.ExchangeName {
|
|
|
|
|
return types.ExchangeKucoin
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Exchange) PlatformFeeCurrency() string {
|
|
|
|
|
return KCS
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Exchange) QueryAccount(ctx context.Context) (*types.Account, error) {
|
|
|
|
|
accounts, err := e.client.AccountService.ListAccounts()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// for now, we only return the trading account
|
|
|
|
|
a := types.NewAccount()
|
|
|
|
|
balances := toGlobalBalanceMap(accounts)
|
|
|
|
|
a.UpdateBalances(balances)
|
|
|
|
|
return a, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Exchange) QueryAccountBalances(ctx context.Context) (types.BalanceMap, error) {
|
|
|
|
|
accounts, err := e.client.AccountService.ListAccounts()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return toGlobalBalanceMap(accounts), nil
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-10 13:43:40 +00:00
|
|
|
|
func (e *Exchange) QueryMarkets(ctx context.Context) (types.MarketMap, error) {
|
2021-12-21 16:30:16 +00:00
|
|
|
|
markets, err := e.client.MarketDataService.ListSymbols()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
marketMap := types.MarketMap{}
|
2021-12-22 13:06:21 +00:00
|
|
|
|
for _, s := range markets {
|
|
|
|
|
market := toGlobalMarket(s)
|
|
|
|
|
marketMap.Add(market)
|
2021-12-21 16:30:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return marketMap, nil
|
2021-12-10 13:43:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Exchange) QueryTicker(ctx context.Context, symbol string) (*types.Ticker, error) {
|
2021-12-21 17:26:00 +00:00
|
|
|
|
s, err := e.client.MarketDataService.GetTicker24HStat(symbol)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-22 13:06:21 +00:00
|
|
|
|
ticker := toGlobalTicker(*s)
|
|
|
|
|
return &ticker, nil
|
2021-12-10 13:43:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-21 17:26:00 +00:00
|
|
|
|
func (e *Exchange) QueryTickers(ctx context.Context, symbols ...string) (map[string]types.Ticker, error) {
|
|
|
|
|
tickers := map[string]types.Ticker{}
|
|
|
|
|
if len(symbols) > 0 {
|
|
|
|
|
for _, s := range symbols {
|
|
|
|
|
t, err := e.QueryTicker(ctx, s)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tickers[s] = *t
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tickers, nil
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-21 17:34:24 +00:00
|
|
|
|
allTickers, err := e.client.MarketDataService.ListTickers()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, s := range allTickers.Ticker {
|
2021-12-25 16:27:52 +00:00
|
|
|
|
tickers[s.Symbol] = toGlobalTicker(s)
|
2021-12-21 17:34:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-21 17:26:00 +00:00
|
|
|
|
return tickers, nil
|
2021-12-10 13:43:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-25 19:19:03 +00:00
|
|
|
|
// From the doc
|
|
|
|
|
// Type of candlestick patterns: 1min, 3min, 5min, 15min, 30min, 1hour, 2hour, 4hour, 6hour, 8hour, 12hour, 1day, 1week
|
2021-12-25 18:23:06 +00:00
|
|
|
|
var supportedIntervals = map[types.Interval]int{
|
2021-12-25 19:04:21 +00:00
|
|
|
|
types.Interval1m: 60,
|
|
|
|
|
types.Interval5m: 60 * 5,
|
2021-12-25 19:17:26 +00:00
|
|
|
|
types.Interval15m: 60 * 15,
|
2021-12-25 18:23:06 +00:00
|
|
|
|
types.Interval30m: 60 * 30,
|
2021-12-25 19:04:21 +00:00
|
|
|
|
types.Interval1h: 60 * 60,
|
|
|
|
|
types.Interval2h: 60 * 60 * 2,
|
|
|
|
|
types.Interval4h: 60 * 60 * 4,
|
|
|
|
|
types.Interval6h: 60 * 60 * 6,
|
2021-12-25 18:23:06 +00:00
|
|
|
|
// types.Interval8h: 60 * 60 * 8,
|
|
|
|
|
types.Interval12h: 60 * 60 * 12,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Exchange) SupportedInterval() map[types.Interval]int {
|
|
|
|
|
return supportedIntervals
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Exchange) IsSupportedInterval(interval types.Interval) bool {
|
|
|
|
|
_, ok := supportedIntervals[interval]
|
|
|
|
|
return ok
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-25 19:04:21 +00:00
|
|
|
|
var marketDataLimiter = rate.NewLimiter(rate.Every(200*time.Millisecond), 1)
|
|
|
|
|
|
2021-12-10 13:43:40 +00:00
|
|
|
|
func (e *Exchange) QueryKLines(ctx context.Context, symbol string, interval types.Interval, options types.KLineQueryOptions) ([]types.KLine, error) {
|
2021-12-25 19:04:21 +00:00
|
|
|
|
_ = marketDataLimiter.Wait(ctx)
|
|
|
|
|
|
2021-12-25 18:23:06 +00:00
|
|
|
|
req := e.client.MarketDataService.NewGetKLinesRequest()
|
|
|
|
|
req.Symbol(toLocalSymbol(symbol))
|
|
|
|
|
req.Interval(toLocalInterval(interval))
|
|
|
|
|
if options.StartTime != nil {
|
|
|
|
|
req.StartAt(*options.StartTime)
|
2021-12-25 19:19:03 +00:00
|
|
|
|
// For each query, the system would return at most **1500** pieces of data. To obtain more data, please page the data by time.
|
2021-12-25 19:14:19 +00:00
|
|
|
|
req.EndAt(options.StartTime.Add(1500 * interval.Duration()))
|
|
|
|
|
} else if options.EndTime != nil {
|
2021-12-25 19:04:21 +00:00
|
|
|
|
req.EndAt(*options.EndTime)
|
2021-12-25 18:23:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ks, err := req.Do(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var klines []types.KLine
|
|
|
|
|
for _, k := range ks {
|
|
|
|
|
gi := toGlobalInterval(k.Interval)
|
|
|
|
|
klines = append(klines, types.KLine{
|
2021-12-25 19:04:21 +00:00
|
|
|
|
Exchange: types.ExchangeKucoin,
|
|
|
|
|
Symbol: toGlobalSymbol(k.Symbol),
|
|
|
|
|
StartTime: types.Time(k.StartTime),
|
|
|
|
|
EndTime: types.Time(k.StartTime.Add(gi.Duration() - time.Millisecond)),
|
|
|
|
|
Interval: gi,
|
|
|
|
|
Open: k.Open.Float64(),
|
|
|
|
|
Close: k.Close.Float64(),
|
|
|
|
|
High: k.High.Float64(),
|
|
|
|
|
Low: k.Low.Float64(),
|
|
|
|
|
Volume: k.Volume.Float64(),
|
|
|
|
|
QuoteVolume: k.QuoteVolume.Float64(),
|
|
|
|
|
Closed: true,
|
2021-12-25 18:23:06 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return klines, nil
|
2021-12-10 13:43:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-21 16:30:16 +00:00
|
|
|
|
func (e *Exchange) SubmitOrders(ctx context.Context, orders ...types.SubmitOrder) (createdOrders types.OrderSlice, err error) {
|
2021-12-25 16:27:52 +00:00
|
|
|
|
for _, order := range orders {
|
|
|
|
|
req := e.client.TradeService.NewPlaceOrderRequest()
|
|
|
|
|
req.Symbol(toLocalSymbol(order.Symbol))
|
|
|
|
|
req.Side(toLocalSide(order.Side))
|
|
|
|
|
|
|
|
|
|
if order.ClientOrderID != "" {
|
|
|
|
|
req.ClientOrderID(order.ClientOrderID)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if len(order.QuantityString) > 0 {
|
|
|
|
|
req.Size(order.QuantityString)
|
|
|
|
|
} else if order.Market.Symbol != "" {
|
|
|
|
|
req.Size(order.Market.FormatQuantity(order.Quantity))
|
|
|
|
|
} else {
|
|
|
|
|
req.Size(strconv.FormatFloat(order.Quantity, 'f', 8, 64))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// set price field for limit orders
|
|
|
|
|
switch order.Type {
|
|
|
|
|
case types.OrderTypeStopLimit, types.OrderTypeLimit:
|
|
|
|
|
if len(order.PriceString) > 0 {
|
|
|
|
|
req.Price(order.PriceString)
|
|
|
|
|
} else if order.Market.Symbol != "" {
|
|
|
|
|
req.Price(order.Market.FormatPrice(order.Price))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch order.TimeInForce {
|
|
|
|
|
case "FOK":
|
|
|
|
|
req.TimeInForce(kucoinapi.TimeInForceFOK)
|
|
|
|
|
case "IOC":
|
|
|
|
|
req.TimeInForce(kucoinapi.TimeInForceIOC)
|
|
|
|
|
default:
|
|
|
|
|
// default to GTC
|
|
|
|
|
req.TimeInForce(kucoinapi.TimeInForceGTC)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
orderResponse, err := req.Do(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return createdOrders, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
createdOrders = append(createdOrders, types.Order{
|
|
|
|
|
SubmitOrder: order,
|
|
|
|
|
Exchange: types.ExchangeKucoin,
|
|
|
|
|
OrderID: hashStringID(orderResponse.OrderID),
|
|
|
|
|
Status: types.OrderStatusNew,
|
|
|
|
|
ExecutedQuantity: 0,
|
|
|
|
|
IsWorking: true,
|
|
|
|
|
CreationTime: types.Time(time.Now()),
|
|
|
|
|
UpdateTime: types.Time(time.Now()),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return createdOrders, err
|
2021-12-21 16:30:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-25 17:27:22 +00:00
|
|
|
|
// QueryOpenOrders
|
|
|
|
|
/*
|
|
|
|
|
Documentation from the Kucoin API page
|
|
|
|
|
|
|
|
|
|
Any order on the exchange order book is in active status.
|
|
|
|
|
Orders removed from the order book will be marked with done status.
|
|
|
|
|
After an order becomes done, there may be a few milliseconds latency before it’s fully settled.
|
|
|
|
|
|
|
|
|
|
You can check the orders in any status.
|
|
|
|
|
If the status parameter is not specified, orders of done status will be returned by default.
|
|
|
|
|
|
|
|
|
|
When you query orders in active status, there is no time limit.
|
|
|
|
|
However, when you query orders in done status, the start and end time range cannot exceed 7* 24 hours.
|
|
|
|
|
An error will occur if the specified time window exceeds the range.
|
|
|
|
|
|
|
|
|
|
If you specify the end time only, the system will automatically calculate the start time as end time minus 7*24 hours, and vice versa.
|
|
|
|
|
|
|
|
|
|
The history for cancelled orders is only kept for one month.
|
|
|
|
|
You will not be able to query for cancelled orders that have happened more than a month ago.
|
|
|
|
|
*/
|
2021-12-21 16:30:16 +00:00
|
|
|
|
func (e *Exchange) QueryOpenOrders(ctx context.Context, symbol string) (orders []types.Order, err error) {
|
2021-12-25 16:27:52 +00:00
|
|
|
|
req := e.client.TradeService.NewListOrdersRequest()
|
|
|
|
|
req.Symbol(toLocalSymbol(symbol))
|
2021-12-25 17:27:22 +00:00
|
|
|
|
req.Status("active")
|
|
|
|
|
orderList, err := req.Do(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2021-12-25 16:27:52 +00:00
|
|
|
|
|
2021-12-25 17:27:22 +00:00
|
|
|
|
// TODO: support pagination (right now we can only get 50 items from the first page)
|
|
|
|
|
for _, o := range orderList.Items {
|
|
|
|
|
order := toGlobalOrder(o)
|
|
|
|
|
orders = append(orders, order)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return orders, err
|
2021-12-21 16:30:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-25 17:34:03 +00:00
|
|
|
|
func (e *Exchange) QueryClosedOrders(ctx context.Context, symbol string, since, until time.Time, lastOrderID uint64) (orders []types.Order, err error) {
|
|
|
|
|
req := e.client.TradeService.NewListOrdersRequest()
|
|
|
|
|
req.Symbol(toLocalSymbol(symbol))
|
|
|
|
|
req.Status("done")
|
|
|
|
|
req.EndAt(until)
|
|
|
|
|
req.StartAt(since)
|
|
|
|
|
|
|
|
|
|
orderList, err := req.Do(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return orders, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: support pagination (right now we can only get 50 items from the first page)
|
|
|
|
|
for _, o := range orderList.Items {
|
|
|
|
|
order := toGlobalOrder(o)
|
|
|
|
|
orders = append(orders, order)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return orders, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-25 17:44:05 +00:00
|
|
|
|
func (e *Exchange) QueryTrades(ctx context.Context, symbol string, options *types.TradeQueryOptions) (trades []types.Trade, err error) {
|
|
|
|
|
req := e.client.TradeService.NewGetFillsRequest()
|
|
|
|
|
req.Symbol(toLocalSymbol(symbol))
|
|
|
|
|
if options.StartTime != nil {
|
|
|
|
|
req.StartAt(*options.StartTime)
|
|
|
|
|
} else if options.EndTime != nil {
|
|
|
|
|
req.EndAt(*options.EndTime)
|
|
|
|
|
}
|
2021-12-25 17:34:03 +00:00
|
|
|
|
|
2021-12-25 17:44:05 +00:00
|
|
|
|
response, err := req.Do(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return trades, err
|
|
|
|
|
}
|
|
|
|
|
for _, fill := range response.Items {
|
|
|
|
|
trade := toGlobalTrade(fill)
|
|
|
|
|
trades = append(trades, trade)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return trades, nil
|
|
|
|
|
}
|
2021-12-25 17:34:03 +00:00
|
|
|
|
|
2021-12-25 17:27:22 +00:00
|
|
|
|
func (e *Exchange) CancelOrders(ctx context.Context, orders ...types.Order) (errs error) {
|
|
|
|
|
for _, o := range orders {
|
|
|
|
|
req := e.client.TradeService.NewCancelOrderRequest()
|
|
|
|
|
|
|
|
|
|
if o.UUID != "" {
|
|
|
|
|
req.OrderID(o.UUID)
|
|
|
|
|
} else if o.ClientOrderID != "" {
|
|
|
|
|
req.ClientOrderID(o.ClientOrderID)
|
|
|
|
|
} else {
|
|
|
|
|
errs = multierr.Append(errs, errors.New("can not cancel order, either order uuid nor client order id is empty"))
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
response, err := req.Do(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
errs = multierr.Append(errs, err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log.Infof("cancelled orders: %v", response.CancelledOrderIDs)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return errs
|
2021-12-21 16:30:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (e *Exchange) NewStream() types.Stream {
|
2021-12-25 15:53:34 +00:00
|
|
|
|
return NewStream(e.client, e)
|
2021-12-10 13:43:40 +00:00
|
|
|
|
}
|
2021-12-25 15:53:34 +00:00
|
|
|
|
|
|
|
|
|
func (e *Exchange) QueryDepth(ctx context.Context, symbol string) (types.SliceOrderBook, int64, error) {
|
|
|
|
|
orderBook, err := e.client.MarketDataService.GetOrderBook(toLocalSymbol(symbol), 100)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return types.SliceOrderBook{}, 0, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if len(orderBook.Sequence) == 0 {
|
|
|
|
|
return types.SliceOrderBook{}, 0, ErrMissingSequence
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sequence, err := strconv.ParseInt(orderBook.Sequence, 10, 64)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return types.SliceOrderBook{}, 0, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return types.SliceOrderBook{
|
|
|
|
|
Symbol: toGlobalSymbol(symbol),
|
|
|
|
|
Bids: orderBook.Bids,
|
|
|
|
|
Asks: orderBook.Asks,
|
|
|
|
|
}, sequence, nil
|
2021-12-25 16:27:52 +00:00
|
|
|
|
}
|