2021-12-10 16:44:55 +00:00
|
|
|
|
package kucoinapi
|
|
|
|
|
|
|
|
|
|
import (
|
2021-12-10 17:41:23 +00:00
|
|
|
|
"fmt"
|
|
|
|
|
"net/http"
|
2021-12-10 16:44:55 +00:00
|
|
|
|
"net/url"
|
2021-12-10 17:41:23 +00:00
|
|
|
|
"strconv"
|
2021-12-10 16:44:55 +00:00
|
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
2021-12-10 17:03:17 +00:00
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
2021-12-10 16:44:55 +00:00
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type MarketDataService struct {
|
|
|
|
|
client *RestClient
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Symbol struct {
|
|
|
|
|
Symbol string `json:"symbol"`
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
BaseCurrency string `json:"baseCurrency"`
|
|
|
|
|
QuoteCurrency string `json:"quoteCurrency"`
|
|
|
|
|
FeeCurrency string `json:"feeCurrency"`
|
|
|
|
|
Market string `json:"market"`
|
|
|
|
|
BaseMinSize fixedpoint.Value `json:"baseMinSize"`
|
|
|
|
|
QuoteMinSize fixedpoint.Value `json:"quoteMinSize"`
|
|
|
|
|
BaseIncrement fixedpoint.Value `json:"baseIncrement"`
|
|
|
|
|
QuoteIncrement fixedpoint.Value `json:"quoteIncrement"`
|
|
|
|
|
PriceIncrement fixedpoint.Value `json:"priceIncrement"`
|
|
|
|
|
PriceLimitRate fixedpoint.Value `json:"priceLimitRate"`
|
|
|
|
|
IsMarginEnabled bool `json:"isMarginEnabled"`
|
|
|
|
|
EnableTrading bool `json:"enableTrading"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *MarketDataService) ListSymbols(market ...string) ([]Symbol, error) {
|
|
|
|
|
var params = url.Values{}
|
|
|
|
|
|
|
|
|
|
if len(market) == 1 {
|
|
|
|
|
params["market"] = []string{market[0]}
|
|
|
|
|
} else if len(market) > 1 {
|
|
|
|
|
return nil, errors.New("symbols api only supports one market parameter")
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-22 15:52:44 +00:00
|
|
|
|
req, err := s.client.NewRequest("GET", "/api/v1/symbols", params, nil)
|
2021-12-10 16:44:55 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-22 15:52:44 +00:00
|
|
|
|
response, err := s.client.SendRequest(req)
|
2021-12-10 16:44:55 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var apiResponse struct {
|
2021-12-10 17:03:17 +00:00
|
|
|
|
Code string `json:"code"`
|
|
|
|
|
Message string `json:"msg"`
|
2021-12-10 16:44:55 +00:00
|
|
|
|
Data []Symbol `json:"data"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := response.DecodeJSON(&apiResponse); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return apiResponse.Data, nil
|
|
|
|
|
}
|
2021-12-10 17:03:17 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
//Get Ticker
|
|
|
|
|
{
|
|
|
|
|
"sequence": "1550467636704",
|
|
|
|
|
"bestAsk": "0.03715004",
|
|
|
|
|
"size": "0.17",
|
|
|
|
|
"price": "0.03715005",
|
|
|
|
|
"bestBidSize": "3.803",
|
|
|
|
|
"bestBid": "0.03710768",
|
|
|
|
|
"bestAskSize": "1.788",
|
|
|
|
|
"time": 1550653727731
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
type Ticker struct {
|
|
|
|
|
Sequence string `json:"sequence"`
|
|
|
|
|
Size fixedpoint.Value `json:"size"`
|
|
|
|
|
Price fixedpoint.Value `json:"price"`
|
|
|
|
|
BestAsk fixedpoint.Value `json:"bestAsk"`
|
|
|
|
|
BestBid fixedpoint.Value `json:"bestBid"`
|
|
|
|
|
BestBidSize fixedpoint.Value `json:"bestBidSize"`
|
|
|
|
|
Time types.MillisecondTimestamp `json:"time"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *MarketDataService) GetTicker(symbol string) (*Ticker, error) {
|
|
|
|
|
var params = url.Values{}
|
|
|
|
|
params["symbol"] = []string{symbol}
|
|
|
|
|
|
2021-12-22 15:52:44 +00:00
|
|
|
|
req, err := s.client.NewRequest("GET", "/api/v1/market/orderbook/level1", params, nil)
|
2021-12-10 17:03:17 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-22 15:52:44 +00:00
|
|
|
|
response, err := s.client.SendRequest(req)
|
2021-12-10 17:03:17 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var apiResponse struct {
|
2021-12-10 17:41:23 +00:00
|
|
|
|
Code string `json:"code"`
|
|
|
|
|
Message string `json:"msg"`
|
2021-12-10 17:03:17 +00:00
|
|
|
|
Data *Ticker `json:"data"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := response.DecodeJSON(&apiResponse); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return apiResponse.Data, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
{
|
|
|
|
|
"time":1602832092060,
|
|
|
|
|
"ticker":[
|
|
|
|
|
{
|
|
|
|
|
"symbol": "BTC-USDT", // symbol
|
2021-12-21 17:26:00 +00:00
|
|
|
|
"symbolName":"BTC-USDT", // SymbolName of trading pairs, it would change after renaming
|
2021-12-10 17:03:17 +00:00
|
|
|
|
"buy": "11328.9", // bestAsk
|
|
|
|
|
"sell": "11329", // bestBid
|
|
|
|
|
"changeRate": "-0.0055", // 24h change rate
|
|
|
|
|
"changePrice": "-63.6", // 24h change price
|
|
|
|
|
"high": "11610", // 24h highest price
|
|
|
|
|
"low": "11200", // 24h lowest price
|
|
|
|
|
"vol": "2282.70993217", // 24h volume,the aggregated trading volume in BTC
|
|
|
|
|
"volValue": "25984946.157790431", // 24h total, the trading volume in quote currency of last 24 hours
|
|
|
|
|
"last": "11328.9", // last price
|
|
|
|
|
"averagePrice": "11360.66065903", // 24h average transaction price yesterday
|
|
|
|
|
"takerFeeRate": "0.001", // Basic Taker Fee
|
|
|
|
|
"makerFeeRate": "0.001", // Basic Maker Fee
|
|
|
|
|
"takerCoefficient": "1", // Taker Fee Coefficient
|
|
|
|
|
"makerCoefficient": "1" // Maker Fee Coefficient
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
2021-12-10 17:41:23 +00:00
|
|
|
|
*/
|
2021-12-10 17:03:17 +00:00
|
|
|
|
|
|
|
|
|
type Ticker24H struct {
|
2021-12-10 17:41:23 +00:00
|
|
|
|
Symbol string `json:"symbol"`
|
2021-12-21 17:26:00 +00:00
|
|
|
|
SymbolName string `json:"symbolName"`
|
2021-12-10 17:41:23 +00:00
|
|
|
|
Buy fixedpoint.Value `json:"buy"`
|
|
|
|
|
Sell fixedpoint.Value `json:"sell"`
|
|
|
|
|
ChangeRate fixedpoint.Value `json:"changeRate"`
|
|
|
|
|
ChangePrice fixedpoint.Value `json:"changePrice"`
|
|
|
|
|
High fixedpoint.Value `json:"high"`
|
|
|
|
|
Low fixedpoint.Value `json:"low"`
|
|
|
|
|
Last fixedpoint.Value `json:"last"`
|
2021-12-10 17:03:17 +00:00
|
|
|
|
AveragePrice fixedpoint.Value `json:"averagePrice"`
|
2021-12-10 17:41:23 +00:00
|
|
|
|
Volume fixedpoint.Value `json:"vol"` // base volume
|
|
|
|
|
VolumeValue fixedpoint.Value `json:"volValue"` // quote volume
|
2021-12-10 17:03:17 +00:00
|
|
|
|
|
|
|
|
|
TakerFeeRate fixedpoint.Value `json:"takerFeeRate"`
|
|
|
|
|
MakerFeeRate fixedpoint.Value `json:"makerFeeRate"`
|
|
|
|
|
|
|
|
|
|
TakerCoefficient fixedpoint.Value `json:"takerCoefficient"`
|
|
|
|
|
MakerCoefficient fixedpoint.Value `json:"makerCoefficient"`
|
2021-12-21 17:26:00 +00:00
|
|
|
|
|
|
|
|
|
Time types.MillisecondTimestamp `json:"time"`
|
2021-12-10 17:03:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AllTickers struct {
|
2021-12-10 17:41:23 +00:00
|
|
|
|
Time types.MillisecondTimestamp `json:"time"`
|
|
|
|
|
Ticker []Ticker24H `json:"ticker"`
|
2021-12-10 17:03:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *MarketDataService) ListTickers() (*AllTickers, error) {
|
2021-12-22 15:52:44 +00:00
|
|
|
|
req, err := s.client.NewRequest("GET", "/api/v1/market/allTickers", nil, nil)
|
2021-12-10 17:03:17 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-22 15:52:44 +00:00
|
|
|
|
response, err := s.client.SendRequest(req)
|
2021-12-10 17:03:17 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var apiResponse struct {
|
2021-12-10 17:41:23 +00:00
|
|
|
|
Code string `json:"code"`
|
|
|
|
|
Message string `json:"msg"`
|
2021-12-10 17:03:17 +00:00
|
|
|
|
Data *AllTickers `json:"data"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := response.DecodeJSON(&apiResponse); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return apiResponse.Data, nil
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-21 17:26:00 +00:00
|
|
|
|
func (s *MarketDataService) GetTicker24HStat(symbol string) (*Ticker24H, error) {
|
|
|
|
|
var params = url.Values{}
|
|
|
|
|
params.Add("symbol", symbol)
|
|
|
|
|
|
2021-12-22 15:52:44 +00:00
|
|
|
|
req, err := s.client.NewRequest("GET", "/api/v1/market/stats", params, nil)
|
2021-12-21 17:26:00 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-22 15:52:44 +00:00
|
|
|
|
response, err := s.client.SendRequest(req)
|
2021-12-21 17:26:00 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var apiResponse struct {
|
|
|
|
|
Code string `json:"code"`
|
|
|
|
|
Message string `json:"msg"`
|
|
|
|
|
Data *Ticker24H `json:"data"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := response.DecodeJSON(&apiResponse); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return apiResponse.Data, nil
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-10 17:41:23 +00:00
|
|
|
|
/*
|
|
|
|
|
{
|
|
|
|
|
"sequence": "3262786978",
|
|
|
|
|
"time": 1550653727731,
|
|
|
|
|
"bids": [["6500.12", "0.45054140"],
|
|
|
|
|
["6500.11", "0.45054140"]], //[price,size]
|
|
|
|
|
"asks": [["6500.16", "0.57753524"],
|
|
|
|
|
["6500.15", "0.57753524"]]
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
type OrderBook struct {
|
|
|
|
|
Sequence string `json:"sequence"`
|
|
|
|
|
Time types.MillisecondTimestamp `json:"time"`
|
|
|
|
|
Bids [][]fixedpoint.Value `json:"bids,omitempty"`
|
|
|
|
|
Asks [][]fixedpoint.Value `json:"asks,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *MarketDataService) GetOrderBook(symbol string, depth int) (*OrderBook, error) {
|
|
|
|
|
params := url.Values{}
|
|
|
|
|
params["symbol"] = []string{symbol}
|
|
|
|
|
|
|
|
|
|
var req *http.Request
|
|
|
|
|
var err error
|
|
|
|
|
|
|
|
|
|
switch depth {
|
|
|
|
|
case 20, 100:
|
|
|
|
|
refURL := "/api/v1/market/orderbook/level2_" + strconv.Itoa(depth)
|
2021-12-22 15:52:44 +00:00
|
|
|
|
req, err = s.client.NewRequest("GET", refURL, params, nil)
|
2021-12-10 17:41:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
|
refURL := "/api/v3/market/orderbook/level2"
|
2021-12-22 15:52:44 +00:00
|
|
|
|
req, err = s.client.NewAuthenticatedRequest("GET", refURL, params, nil)
|
2021-12-10 17:41:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return nil, fmt.Errorf("depth %d is not supported, use 20, 100 or 0", depth)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-22 15:52:44 +00:00
|
|
|
|
response, err := s.client.SendRequest(req)
|
2021-12-10 17:41:23 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var apiResponse struct {
|
|
|
|
|
Code string `json:"code"`
|
|
|
|
|
Message string `json:"msg"`
|
|
|
|
|
Data *OrderBook `json:"data"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := response.DecodeJSON(&apiResponse); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return apiResponse.Data, nil
|
|
|
|
|
}
|