bbgo_origin/pkg/exchange/okex/exchange.go

172 lines
4.2 KiB
Go
Raw Normal View History

2021-05-22 19:34:40 +00:00
package okex
import (
2021-05-25 18:11:02 +00:00
"context"
2021-05-25 19:04:49 +00:00
"fmt"
2021-05-25 18:11:02 +00:00
"math"
"github.com/c9s/bbgo/pkg/exchange/okex/okexapi"
"github.com/c9s/bbgo/pkg/types"
2021-05-22 19:34:40 +00:00
"github.com/sirupsen/logrus"
)
// OKB is the platform currency of OKEx, pre-allocate static string here
const OKB = "OKB"
2021-05-22 19:34:40 +00:00
var log = logrus.WithFields(logrus.Fields{
"exchange": "okex",
})
type Exchange struct {
2021-05-25 18:11:02 +00:00
key, secret, passphrase string
client *okexapi.RestClient
}
func New(key, secret, passphrase string) *Exchange {
client := okexapi.NewClient()
client.Auth(key, secret, passphrase)
return &Exchange{
key: key,
secret: secret,
passphrase: passphrase,
2021-05-26 17:07:25 +00:00
client: client,
2021-05-25 18:11:02 +00:00
}
}
func (e *Exchange) Name() types.ExchangeName {
return types.ExchangeOKEx
}
func (e *Exchange) QueryMarkets(ctx context.Context) (types.MarketMap, error) {
instruments, err := e.client.PublicDataService.NewGetInstrumentsRequest().
InstrumentType(okexapi.InstrumentTypeSpot).
Do(ctx)
if err != nil {
return nil, err
}
markets := types.MarketMap{}
for _, instrument := range instruments {
symbol := toGlobalSymbol(instrument.InstrumentID)
market := types.Market{
Symbol: symbol,
LocalSymbol: instrument.InstrumentID,
2021-05-25 18:11:02 +00:00
QuoteCurrency: instrument.QuoteCurrency,
BaseCurrency: instrument.BaseCurrency,
// convert tick size OKEx to precision
PricePrecision: int(-math.Log10(instrument.TickSize.Float64())),
VolumePrecision: int(-math.Log10(instrument.LotSize.Float64())),
// TickSize: OKEx's price tick, for BTC-USDT it's "0.1"
TickSize: instrument.TickSize.Float64(),
// Quantity step size, for BTC-USDT, it's "0.00000001"
StepSize: instrument.LotSize.Float64(),
// for BTC-USDT, it's "0.00001"
MinQuantity: instrument.MinSize.Float64(),
// OKEx does not offer minimal notional, use 1 USD here.
MinNotional: 1.0,
MinAmount: 1.0,
}
markets[symbol] = market
}
return markets, nil
}
func (e *Exchange) QueryTicker(ctx context.Context, symbol string) (*types.Ticker, error) {
2021-05-25 18:44:03 +00:00
symbol = toLocalSymbol(symbol)
marketTicker, err := e.client.MarketTicker(symbol)
if err != nil {
return nil, err
}
2021-05-25 19:04:49 +00:00
return toGlobalTicker(*marketTicker), nil
2021-05-25 18:11:02 +00:00
}
2021-05-25 19:04:49 +00:00
func (e *Exchange) QueryTickers(ctx context.Context, symbols ...string) (map[string]types.Ticker, error) {
marketTickers, err := e.client.MarketTickers(okexapi.InstrumentTypeSpot)
if err != nil {
return nil, err
}
tickers := make(map[string]types.Ticker)
for _, marketTicker := range marketTickers {
symbol := toGlobalSymbol(marketTicker.InstrumentID)
ticker := toGlobalTicker(marketTicker)
tickers[symbol] = *ticker
}
if len(symbols) == 0 {
return tickers, nil
}
2021-05-27 07:11:44 +00:00
selectedTickers := make(map[string]types.Ticker, len(symbols))
2021-05-25 19:04:49 +00:00
for _, symbol := range symbols {
if ticker, ok := tickers[symbol]; ok {
selectedTickers[symbol] = ticker
} else {
return selectedTickers, fmt.Errorf("ticker of symbol %s not found", symbols)
}
}
return selectedTickers, nil
2021-05-25 18:11:02 +00:00
}
func (e *Exchange) PlatformFeeCurrency() string {
return OKB
2021-05-22 19:34:40 +00:00
}
func (e *Exchange) QueryAccount(ctx context.Context) (*types.Account, error) {
accountBalance, err := e.client.AccountBalances()
2021-05-26 16:24:16 +00:00
if err != nil {
return nil, err
}
var account = types.Account{
AccountType: "SPOT",
}
var balanceMap = toGlobalBalance(accountBalance)
2021-05-26 16:24:16 +00:00
account.UpdateBalances(balanceMap)
return &account, nil
}
func (e *Exchange) QueryAccountBalances(ctx context.Context) (types.BalanceMap, error) {
2021-05-26 16:24:16 +00:00
balanceSummaries, err := e.client.AccountBalances()
if err != nil {
return nil, err
}
var balanceMap = toGlobalBalance(balanceSummaries)
return balanceMap, nil
}
func (e *Exchange) SubmitOrders(ctx context.Context, orders ...types.SubmitOrder) (createdOrders types.OrderSlice, err error) {
panic("implement me")
}
func (e *Exchange) QueryOpenOrders(ctx context.Context, symbol string) (orders []types.Order, err error) {
panic("implement me")
}
func (e *Exchange) CancelOrders(ctx context.Context, orders ...types.Order) error {
panic("implement me")
}
2021-05-26 16:35:51 +00:00
func (e *Exchange) NewStream() types.Stream {
2021-05-26 17:07:25 +00:00
return NewStream(e.client)
2021-05-26 16:35:51 +00:00
}
func (e *Exchange) QueryKLines(ctx context.Context, symbol string, interval types.Interval, options types.KLineQueryOptions) ([]types.KLine, error) {
panic("implement me")
}