Versions in this module Expand all Collapse all v1 v1.0.6 Sep 27, 2019 Changes in this version + const ACCOUNT_URI + const DEPTH_URI + const ORDERS_URI + const TICKER_URI + const V2 + const V3 + type AccountResp struct + Data []struct{ ... } + Errors []struct{ ... } + type Bigone struct + func New(client *http.Client, api_key, secret_key string) *Bigone + func (bo *Bigone) CancelOrder(orderId string, currency goex.CurrencyPair) (bool, error) + func (bo *Bigone) GetAccount() (*goex.Account, error) + func (bo *Bigone) GetDepth(size int, currencyPair goex.CurrencyPair) (*goex.Depth, error) + func (bo *Bigone) GetExchangeName() string + func (bo *Bigone) GetKlineRecords(currency goex.CurrencyPair, period, size, since int) ([]goex.Kline, error) + func (bo *Bigone) GetOneOrder(orderId string, currencyPair goex.CurrencyPair) (*goex.Order, error) + func (bo *Bigone) GetOrderHistorys(currencyPair goex.CurrencyPair, currentPage, pageSize int) ([]goex.Order, error) + func (bo *Bigone) GetTicker(currency goex.CurrencyPair) (*goex.Ticker, error) + func (bo *Bigone) GetTrades(currencyPair goex.CurrencyPair, since int64) ([]goex.Trade, error) + func (bo *Bigone) GetUnfinishOrders(currencyPair goex.CurrencyPair) ([]goex.Order, error) + func (bo *Bigone) LimitBuy(amount, price string, currency goex.CurrencyPair) (*goex.Order, error) + func (bo *Bigone) LimitSell(amount, price string, currency goex.CurrencyPair) (*goex.Order, error) + func (bo *Bigone) MarketBuy(amount, price string, currency goex.CurrencyPair) (*goex.Order, error) + func (bo *Bigone) MarketSell(amount, price string, currency goex.CurrencyPair) (*goex.Order, error) + type BigoneV3 struct + func NewV3(client *http.Client, api_key, secret_key string) *BigoneV3 + func (bo *BigoneV3) CancelOrder(orderId string, currency goex.CurrencyPair) (bool, error) + func (bo *BigoneV3) GetAccount() (*goex.Account, error) + func (bo *BigoneV3) GetDepth(size int, currencyPair goex.CurrencyPair) (*goex.Depth, error) + func (bo *BigoneV3) GetExchangeName() string + func (bo *BigoneV3) GetKlineRecords(currency goex.CurrencyPair, period, size, since int) ([]goex.Kline, error) + func (bo *BigoneV3) GetOneOrder(orderId string, currencyPair goex.CurrencyPair) (*goex.Order, error) + func (bo *BigoneV3) GetOrderHistorys(currencyPair goex.CurrencyPair, currentPage, pageSize int) ([]goex.Order, error) + func (bo *BigoneV3) GetTicker(currency goex.CurrencyPair) (*goex.Ticker, error) + func (bo *BigoneV3) GetTrades(currencyPair goex.CurrencyPair, since int64) ([]goex.Trade, error) + func (bo *BigoneV3) GetUnfinishOrders(currencyPair goex.CurrencyPair) ([]goex.Order, error) + func (bo *BigoneV3) LimitBuy(amount, price string, currency goex.CurrencyPair) (*goex.Order, error) + func (bo *BigoneV3) LimitSell(amount, price string, currency goex.CurrencyPair) (*goex.Order, error) + func (bo *BigoneV3) MarketBuy(amount, price string, currency goex.CurrencyPair) (*goex.Order, error) + func (bo *BigoneV3) MarketSell(amount, price string, currency goex.CurrencyPair) (*goex.Order, error) + type CancelOrderResp struct + Data struct{ ... } + Errors []struct{ ... } + type CandleResp struct + Data []struct{ ... } + Errors []struct{ ... } + type DepthResp struct + Data struct{ ... } + Errors []struct{ ... } + type GetOneOrderResp struct + Data struct{ ... } + Errors []struct{ ... } + type OrderListResp struct + Data struct{ ... } + Errors []struct{ ... } + type OrderListV3Resp struct + Data []struct{ ... } + Errors []struct{ ... } + PageToken string + type PlaceOrderResp struct + Data struct{ ... } + Errors []struct{ ... } + type ServerTimestampResp struct + Data struct{ ... } + Errors []struct{ ... } + type TickerResp struct + Data struct{ ... } + Errors []struct{ ... }