bbgo_origin/pkg/exchange/okex/exchange.go

88 lines
2.0 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"
"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"
)
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,
}
}
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,
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) {
return nil, nil
}
func (e *Exchange) QueryTickers(ctx context.Context, symbol string) (*types.Ticker, error) {
return nil, nil
}
func (e *Exchange) PlatformFeeCurrency() string {
return "OKB"
2021-05-22 19:34:40 +00:00
}