mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-05 23:16:53 +00:00
* Changed IBotExchange interface ModifyOrder function paramater and return value to exchange type for easier addition or retraction of variables. * Function ModifyOrder for Binance not supported via API * Change to unsupported function for exchange ZB * Change to unsupported function for exchange Yobit * Add modify order support for Poloniex * Change to unsupported function for exchange Okex * Change to unsupported function for exchange Localbitcoins * Change to unsupported function for exchange Liqui * Change to unsupported function for exchange LakeBTC * Change to unsupported function for exchange Kraken * Change to unsupported function for exchange Itbit * Change to unsupported function for exchange HuobiHadax * Change to unsupported function for exchange Huobi * Change to unsupported function for exchange HitBTC * Change to unsupported function for exchange Gemini * Change to unsupported function for exchange GateIO * Change to unsupported function for exchange Exmo * Change to unsupported function for exchange Coinut * Change to unsupported function for exchange Coinbase * Change to unsupported function for exchange BTCMarkets * Change to unsupported function for exchange Bittrex * Change to unsupported function for exchange Bitstamp * Add modify order support for Bitmex * Add verbose header information in request package * Add modify order support for Bithumb exchange * Change to unsupported function for exchange Bitflyer * Change to unsupported function for exchange Bitfinex * Change to unsupported function for exchange ANX * Change interface function signature * Rm redundant code for authenticated requests in Bithumb * Add error check if decimal values supplied for create or modifying an order on Bitmex * Added test functions across the exchanges * Rm comment for modify order on Alphapoint exchange * Update tmpl file for exchange wrapper
274 lines
8.6 KiB
Go
274 lines
8.6 KiB
Go
package poloniex
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"strconv"
|
|
"sync"
|
|
|
|
"github.com/thrasher-/gocryptotrader/common"
|
|
"github.com/thrasher-/gocryptotrader/currency/pair"
|
|
"github.com/thrasher-/gocryptotrader/exchanges"
|
|
"github.com/thrasher-/gocryptotrader/exchanges/orderbook"
|
|
"github.com/thrasher-/gocryptotrader/exchanges/ticker"
|
|
)
|
|
|
|
// Start starts the Poloniex go routine
|
|
func (p *Poloniex) Start(wg *sync.WaitGroup) {
|
|
wg.Add(1)
|
|
go func() {
|
|
p.Run()
|
|
wg.Done()
|
|
}()
|
|
}
|
|
|
|
// Run implements the Poloniex wrapper
|
|
func (p *Poloniex) Run() {
|
|
if p.Verbose {
|
|
log.Printf("%s Websocket: %s (url: %s).\n", p.GetName(), common.IsEnabled(p.Websocket.IsEnabled()), poloniexWebsocketAddress)
|
|
log.Printf("%s polling delay: %ds.\n", p.GetName(), p.RESTPollingDelay)
|
|
log.Printf("%s %d currencies enabled: %s.\n", p.GetName(), len(p.EnabledPairs), p.EnabledPairs)
|
|
}
|
|
|
|
exchangeCurrencies, err := p.GetExchangeCurrencies()
|
|
if err != nil {
|
|
log.Printf("%s Failed to get available symbols.\n", p.GetName())
|
|
} else {
|
|
forceUpdate := false
|
|
if common.StringDataCompare(p.AvailablePairs, "BTC_USDT") {
|
|
log.Printf("%s contains invalid pair, forcing upgrade of available currencies.\n",
|
|
p.GetName())
|
|
forceUpdate = true
|
|
}
|
|
err = p.UpdateCurrencies(exchangeCurrencies, false, forceUpdate)
|
|
if err != nil {
|
|
log.Printf("%s Failed to update available currencies %s.\n", p.GetName(), err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// UpdateTicker updates and returns the ticker for a currency pair
|
|
func (p *Poloniex) UpdateTicker(currencyPair pair.CurrencyPair, assetType string) (ticker.Price, error) {
|
|
var tickerPrice ticker.Price
|
|
tick, err := p.GetTicker()
|
|
if err != nil {
|
|
return tickerPrice, err
|
|
}
|
|
|
|
for _, x := range p.GetEnabledCurrencies() {
|
|
var tp ticker.Price
|
|
curr := exchange.FormatExchangeCurrency(p.GetName(), x).String()
|
|
tp.Pair = x
|
|
tp.Ask = tick[curr].LowestAsk
|
|
tp.Bid = tick[curr].HighestBid
|
|
tp.High = tick[curr].High24Hr
|
|
tp.Last = tick[curr].Last
|
|
tp.Low = tick[curr].Low24Hr
|
|
tp.Volume = tick[curr].BaseVolume
|
|
ticker.ProcessTicker(p.GetName(), x, tp, assetType)
|
|
}
|
|
return ticker.GetTicker(p.Name, currencyPair, assetType)
|
|
}
|
|
|
|
// GetTickerPrice returns the ticker for a currency pair
|
|
func (p *Poloniex) GetTickerPrice(currencyPair pair.CurrencyPair, assetType string) (ticker.Price, error) {
|
|
tickerNew, err := ticker.GetTicker(p.GetName(), currencyPair, assetType)
|
|
if err != nil {
|
|
return p.UpdateTicker(currencyPair, assetType)
|
|
}
|
|
return tickerNew, nil
|
|
}
|
|
|
|
// GetOrderbookEx returns orderbook base on the currency pair
|
|
func (p *Poloniex) GetOrderbookEx(currencyPair pair.CurrencyPair, assetType string) (orderbook.Base, error) {
|
|
ob, err := orderbook.GetOrderbook(p.GetName(), currencyPair, assetType)
|
|
if err != nil {
|
|
return p.UpdateOrderbook(currencyPair, assetType)
|
|
}
|
|
return ob, nil
|
|
}
|
|
|
|
// UpdateOrderbook updates and returns the orderbook for a currency pair
|
|
func (p *Poloniex) UpdateOrderbook(currencyPair pair.CurrencyPair, assetType string) (orderbook.Base, error) {
|
|
var orderBook orderbook.Base
|
|
orderbookNew, err := p.GetOrderbook("", 1000)
|
|
if err != nil {
|
|
return orderBook, err
|
|
}
|
|
|
|
for _, x := range p.GetEnabledCurrencies() {
|
|
currency := exchange.FormatExchangeCurrency(p.Name, x).String()
|
|
data, ok := orderbookNew.Data[currency]
|
|
if !ok {
|
|
continue
|
|
}
|
|
orderBook.Pair = x
|
|
|
|
var obItems []orderbook.Item
|
|
for y := range data.Bids {
|
|
obData := data.Bids[y]
|
|
obItems = append(obItems, orderbook.Item{Amount: obData.Amount, Price: obData.Price})
|
|
}
|
|
|
|
orderBook.Bids = obItems
|
|
obItems = []orderbook.Item{}
|
|
for y := range data.Asks {
|
|
obData := data.Asks[y]
|
|
obItems = append(obItems, orderbook.Item{Amount: obData.Amount, Price: obData.Price})
|
|
}
|
|
orderBook.Asks = obItems
|
|
orderbook.ProcessOrderbook(p.Name, x, orderBook, assetType)
|
|
}
|
|
return orderbook.GetOrderbook(p.Name, currencyPair, assetType)
|
|
}
|
|
|
|
// GetAccountInfo retrieves balances for all enabled currencies for the
|
|
// Poloniex exchange
|
|
func (p *Poloniex) GetAccountInfo() (exchange.AccountInfo, error) {
|
|
var response exchange.AccountInfo
|
|
response.ExchangeName = p.GetName()
|
|
accountBalance, err := p.GetBalances()
|
|
if err != nil {
|
|
return response, err
|
|
}
|
|
|
|
for x, y := range accountBalance.Currency {
|
|
var exchangeCurrency exchange.AccountCurrencyInfo
|
|
exchangeCurrency.CurrencyName = x
|
|
exchangeCurrency.TotalValue = y
|
|
response.Currencies = append(response.Currencies, exchangeCurrency)
|
|
}
|
|
return response, nil
|
|
}
|
|
|
|
// GetFundingHistory returns funding history, deposits and
|
|
// withdrawals
|
|
func (p *Poloniex) GetFundingHistory() ([]exchange.FundHistory, error) {
|
|
var fundHistory []exchange.FundHistory
|
|
return fundHistory, common.ErrFunctionNotSupported
|
|
}
|
|
|
|
// GetExchangeHistory returns historic trade data since exchange opening.
|
|
func (p *Poloniex) GetExchangeHistory(currencyPair pair.CurrencyPair, assetType string) ([]exchange.TradeHistory, error) {
|
|
var resp []exchange.TradeHistory
|
|
|
|
return resp, common.ErrNotYetImplemented
|
|
}
|
|
|
|
// SubmitOrder submits a new order
|
|
func (p *Poloniex) SubmitOrder(currencyPair pair.CurrencyPair, side exchange.OrderSide, orderType exchange.OrderType, amount, price float64, clientID string) (exchange.SubmitOrderResponse, error) {
|
|
var submitOrderResponse exchange.SubmitOrderResponse
|
|
fillOrKill := orderType == exchange.Market
|
|
isBuyOrder := side == exchange.Buy
|
|
response, err := p.PlaceOrder(currencyPair.Pair().String(), price, amount, false, fillOrKill, isBuyOrder)
|
|
|
|
if response.OrderNumber > 0 {
|
|
submitOrderResponse.OrderID = fmt.Sprintf("%v", response.OrderNumber)
|
|
}
|
|
|
|
if err == nil {
|
|
submitOrderResponse.IsOrderPlaced = true
|
|
}
|
|
|
|
return submitOrderResponse, err
|
|
}
|
|
|
|
// ModifyOrder will allow of changing orderbook placement and limit to
|
|
// market conversion
|
|
func (p *Poloniex) ModifyOrder(action exchange.ModifyOrder) (string, error) {
|
|
oID, err := strconv.ParseInt(action.OrderID, 10, 64)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
resp, err := p.MoveOrder(oID,
|
|
action.Price,
|
|
action.Amount,
|
|
action.PostOnly,
|
|
action.ImmediateOrCancel)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return strconv.FormatInt(resp.OrderNumber, 10), nil
|
|
}
|
|
|
|
// CancelOrder cancels an order by its corresponding ID number
|
|
func (p *Poloniex) CancelOrder(order exchange.OrderCancellation) error {
|
|
orderIDInt, err := strconv.ParseInt(order.OrderID, 10, 64)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = p.CancelExistingOrder(orderIDInt)
|
|
|
|
return err
|
|
}
|
|
|
|
// CancelAllOrders cancels all orders associated with a currency pair
|
|
func (p *Poloniex) CancelAllOrders(orderCancellation exchange.OrderCancellation) (exchange.CancelAllOrdersResponse, error) {
|
|
cancelAllOrdersResponse := exchange.CancelAllOrdersResponse{
|
|
OrderStatus: make(map[string]string),
|
|
}
|
|
openOrders, err := p.GetOpenOrdersForAllCurrencies()
|
|
if err != nil {
|
|
return cancelAllOrdersResponse, err
|
|
}
|
|
|
|
for _, openOrderPerCurrency := range openOrders.Data {
|
|
for _, openOrder := range openOrderPerCurrency {
|
|
_, err = p.CancelExistingOrder(openOrder.OrderNumber)
|
|
if err != nil {
|
|
cancelAllOrdersResponse.OrderStatus[strconv.FormatInt(openOrder.OrderNumber, 10)] = err.Error()
|
|
}
|
|
}
|
|
}
|
|
|
|
return cancelAllOrdersResponse, nil
|
|
}
|
|
|
|
// GetOrderInfo returns information on a current open order
|
|
func (p *Poloniex) GetOrderInfo(orderID int64) (exchange.OrderDetail, error) {
|
|
var orderDetail exchange.OrderDetail
|
|
return orderDetail, common.ErrNotYetImplemented
|
|
}
|
|
|
|
// GetDepositAddress returns a deposit address for a specified currency
|
|
func (p *Poloniex) GetDepositAddress(cryptocurrency pair.CurrencyItem) (string, error) {
|
|
return "", common.ErrNotYetImplemented
|
|
}
|
|
|
|
// WithdrawCryptocurrencyFunds returns a withdrawal ID when a withdrawal is
|
|
// submitted
|
|
func (p *Poloniex) WithdrawCryptocurrencyFunds(address string, cryptocurrency pair.CurrencyItem, amount float64) (string, error) {
|
|
return "", common.ErrNotYetImplemented
|
|
}
|
|
|
|
// WithdrawFiatFunds returns a withdrawal ID when a
|
|
// withdrawal is submitted
|
|
func (p *Poloniex) WithdrawFiatFunds(currency pair.CurrencyItem, amount float64) (string, error) {
|
|
return "", common.ErrNotYetImplemented
|
|
}
|
|
|
|
// WithdrawFiatFundsToInternationalBank returns a withdrawal ID when a
|
|
// withdrawal is submitted
|
|
func (p *Poloniex) WithdrawFiatFundsToInternationalBank(currency pair.CurrencyItem, amount float64) (string, error) {
|
|
return "", common.ErrNotYetImplemented
|
|
}
|
|
|
|
// GetWebsocket returns a pointer to the exchange websocket
|
|
func (p *Poloniex) GetWebsocket() (*exchange.Websocket, error) {
|
|
return p.Websocket, nil
|
|
}
|
|
|
|
// GetFeeByType returns an estimate of fee based on type of transaction
|
|
func (p *Poloniex) GetFeeByType(feeBuilder exchange.FeeBuilder) (float64, error) {
|
|
return p.GetFee(feeBuilder)
|
|
}
|
|
|
|
// GetWithdrawCapabilities returns the types of withdrawal methods permitted by the exchange
|
|
func (p *Poloniex) GetWithdrawCapabilities() uint32 {
|
|
return p.GetWithdrawPermissions()
|
|
}
|