mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-18 15:10:03 +00:00
* Initial codes for a trade tracker * Moving everything in a broken fashion * Removes tradetracker. Removes some errors for subsystems * Cleans up some subsystems, renames stuttering types. Removes some global Bot usage * More basic subsystem renaming and file moving * Removes engine dependency from events,ntpserver,ordermanager,comms manager * Exports eventManager, fixes rpcserver. puts rpcserver back for now * Removes redundant error message, further removes engine dependencies * experimental end of day interface usage * adds ability to build the application * Withdraw and event manager handling * cleans up apiserver and communications manager * Cleans up some start/setup processes. Though should separate * More consistency with Setup Start Stop IsRunning funcs * Final consistency pass before testing phase * Fixes engine tests. Fixes stop nil issue * api server tests * Communications manager testing * Connection manager tests and nilsubsystem error * End of day currencypairsyncer tests * Adds databaseconnection/databaseconnection_test.go * Adds withdrawal manager tests * Deposit address testing. Moved orderbook sync first as its more important * Adds test for event manager * More full eventmanager testing * Adds testfile. Enables skipped test. * ntp manager tests * Adds ordermanager tests, Extracts a whole new subsystem from engine and fanangles import cycles * Adds websocket routine manager tests * Basic portfolio manager testing * Fixes issue with currency pair sync startup * Fixes issue with event manager startup * Starts the order manager before backtester starts * Fixes fee tests. Expands testing. Doesnt fix races * Fixes most test races * Resolves data races * Fixes subsystem test issues * currency pair syncer coverage tests * Refactors portfolio. Fixes tests. Withdraw validation Portfolio didn't need to exist with a portfolio manager. Now the porfolio manager is in charge how the portfolio is handled and all portfolio functions are attached to the base instead of just exported at the package level Withdrawal validation occurred at the exchange level when it can just be run at the withdrawal manager level. All withdrawal requests go through that endpoint * lint -fix * golang lint fixes * lints and comments everything * Updates GCT logo, adds documentation for some subsystems * More documentation and more logo updates * Fixes backtesting and apiserver errors encountered * Fixes errors and typos from reviewing * More minor fixes * Changes %h verb to %w * reverbs to %s * Humbly begins reverting to more flat engine package The main reasoning for this is that the subsystem split doesn't make sense in a golang environment. The subsystems are only meant to be used with engine and so by placing them in a non-engine area, it does not work and is inconsistent with the rest of the application's package layout. This will begin salvaging the changes made by reverting to a flat engine package, but maintaining the consistent designs introduced. Further, I will look to remove any TestMains and decrease the scope of testing to be more local and decrease the issues that have been caused from our style of testing. * Manages to re-flatten things. Everything is within its own file * mini fixes * Fixes tests and data races and lints * Updates docs tool for engine to create filename readmes * os -> ioutil * remove err * Appveyor version increase test * Removes tCleanup as its unsupported on appveyor * Adds stuff that I thought was in previous merge master commit * Removes cancel from test * Fixes really fun test-exclusive data race * minor nit fixes * niterinos * docs gen * rm;rf test * Remove typoline. expands startstop helper. Splits apiserver * Removes accidental folder * Uses update instead of replace for order upsert * addresses nits. Renames files. Regenerates documentation. * lint and removal of comments * Add new test for default scenario * Fixes typo * regen docs
434 lines
12 KiB
Go
434 lines
12 KiB
Go
package yobit
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/thrasher-corp/gocryptotrader/common/crypto"
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/request"
|
|
"github.com/thrasher-corp/gocryptotrader/log"
|
|
)
|
|
|
|
const (
|
|
apiPublicURL = "https://yobit.net/api"
|
|
apiPrivateURL = "https://yobit.net/tapi"
|
|
apiPublicVersion = "3"
|
|
publicInfo = "info"
|
|
publicTicker = "ticker"
|
|
publicDepth = "depth"
|
|
publicTrades = "trades"
|
|
privateAccountInfo = "getInfo"
|
|
privateTrade = "Trade"
|
|
privateActiveOrders = "ActiveOrders"
|
|
privateOrderInfo = "OrderInfo"
|
|
privateCancelOrder = "CancelOrder"
|
|
privateTradeHistory = "TradeHistory"
|
|
privateGetDepositAddress = "GetDepositAddress"
|
|
privateWithdrawCoinsToAddress = "WithdrawCoinsToAddress"
|
|
privateCreateCoupon = "CreateYobicode"
|
|
privateRedeemCoupon = "RedeemYobicode"
|
|
|
|
yobitAuthRate = 0
|
|
yobitUnauthRate = 0
|
|
)
|
|
|
|
// Yobit is the overarching type across the Yobit package
|
|
type Yobit struct {
|
|
exchange.Base
|
|
}
|
|
|
|
// GetInfo returns the Yobit info
|
|
func (y *Yobit) GetInfo() (Info, error) {
|
|
resp := Info{}
|
|
path := fmt.Sprintf("/%s/%s/", apiPublicVersion, publicInfo)
|
|
|
|
return resp, y.SendHTTPRequest(exchange.RestSpot, path, &resp)
|
|
}
|
|
|
|
// GetTicker returns a ticker for a specific currency
|
|
func (y *Yobit) GetTicker(symbol string) (map[string]Ticker, error) {
|
|
type Response struct {
|
|
Data map[string]Ticker
|
|
}
|
|
|
|
response := Response{}
|
|
path := fmt.Sprintf("/%s/%s/%s", apiPublicVersion, publicTicker, symbol)
|
|
|
|
return response.Data, y.SendHTTPRequest(exchange.RestSpot, path, &response.Data)
|
|
}
|
|
|
|
// GetDepth returns the depth for a specific currency
|
|
func (y *Yobit) GetDepth(symbol string) (Orderbook, error) {
|
|
type Response struct {
|
|
Data map[string]Orderbook
|
|
}
|
|
|
|
response := Response{}
|
|
path := fmt.Sprintf("/%s/%s/%s", apiPublicVersion, publicDepth, symbol)
|
|
|
|
return response.Data[symbol],
|
|
y.SendHTTPRequest(exchange.RestSpot, path, &response.Data)
|
|
}
|
|
|
|
// GetTrades returns the trades for a specific currency
|
|
func (y *Yobit) GetTrades(symbol string) ([]Trade, error) {
|
|
type respDataHolder struct {
|
|
Data map[string][]Trade
|
|
}
|
|
|
|
var dataHolder respDataHolder
|
|
path := "/" + apiPublicVersion + "/" + publicTrades + "/" + symbol
|
|
err := y.SendHTTPRequest(exchange.RestSpot, path, &dataHolder.Data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if tr, ok := dataHolder.Data[symbol]; ok {
|
|
return tr, nil
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
// GetAccountInformation returns a users account info
|
|
func (y *Yobit) GetAccountInformation() (AccountInfo, error) {
|
|
result := AccountInfo{}
|
|
|
|
err := y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateAccountInfo, url.Values{}, &result)
|
|
if err != nil {
|
|
return result, err
|
|
}
|
|
if result.Error != "" {
|
|
return result, errors.New(result.Error)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// Trade places an order and returns the order ID if successful or an error
|
|
func (y *Yobit) Trade(pair, orderType string, amount, price float64) (int64, error) {
|
|
req := url.Values{}
|
|
req.Add("pair", pair)
|
|
req.Add("type", strings.ToLower(orderType))
|
|
req.Add("amount", strconv.FormatFloat(amount, 'f', -1, 64))
|
|
req.Add("rate", strconv.FormatFloat(price, 'f', -1, 64))
|
|
|
|
result := TradeOrderResponse{}
|
|
|
|
err := y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateTrade, req, &result)
|
|
if err != nil {
|
|
return int64(result.OrderID), err
|
|
}
|
|
if result.Error != "" {
|
|
return int64(result.OrderID), errors.New(result.Error)
|
|
}
|
|
return int64(result.OrderID), nil
|
|
}
|
|
|
|
// GetOpenOrders returns the active orders for a specific currency
|
|
func (y *Yobit) GetOpenOrders(pair string) (map[string]ActiveOrders, error) {
|
|
req := url.Values{}
|
|
req.Add("pair", pair)
|
|
|
|
result := map[string]ActiveOrders{}
|
|
|
|
return result, y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateActiveOrders, req, &result)
|
|
}
|
|
|
|
// GetOrderInformation returns the order info for a specific order ID
|
|
func (y *Yobit) GetOrderInformation(orderID int64) (map[string]OrderInfo, error) {
|
|
req := url.Values{}
|
|
req.Add("order_id", strconv.FormatInt(orderID, 10))
|
|
|
|
result := map[string]OrderInfo{}
|
|
|
|
return result, y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateOrderInfo, req, &result)
|
|
}
|
|
|
|
// CancelExistingOrder cancels an order for a specific order ID
|
|
func (y *Yobit) CancelExistingOrder(orderID int64) error {
|
|
req := url.Values{}
|
|
req.Add("order_id", strconv.FormatInt(orderID, 10))
|
|
|
|
result := CancelOrder{}
|
|
|
|
err := y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateCancelOrder, req, &result)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if result.Error != "" {
|
|
return errors.New(result.Error)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetTradeHistory returns the trade history
|
|
func (y *Yobit) GetTradeHistory(tidFrom, count, tidEnd, since, end int64, order, pair string) (map[string]TradeHistory, error) {
|
|
req := url.Values{}
|
|
req.Add("from", strconv.FormatInt(tidFrom, 10))
|
|
req.Add("count", strconv.FormatInt(count, 10))
|
|
req.Add("from_id", strconv.FormatInt(tidFrom, 10))
|
|
req.Add("end_id", strconv.FormatInt(tidEnd, 10))
|
|
req.Add("order", order)
|
|
req.Add("since", strconv.FormatInt(since, 10))
|
|
req.Add("end", strconv.FormatInt(end, 10))
|
|
req.Add("pair", pair)
|
|
|
|
result := TradeHistoryResponse{}
|
|
|
|
err := y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateTradeHistory, req, &result)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if result.Success == 0 {
|
|
return nil, errors.New(result.Error)
|
|
}
|
|
|
|
return result.Data, nil
|
|
}
|
|
|
|
// GetCryptoDepositAddress returns the deposit address for a specific currency
|
|
func (y *Yobit) GetCryptoDepositAddress(coin string) (DepositAddress, error) {
|
|
req := url.Values{}
|
|
req.Add("coinName", coin)
|
|
|
|
result := DepositAddress{}
|
|
|
|
err := y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateGetDepositAddress, req, &result)
|
|
if err != nil {
|
|
return result, err
|
|
}
|
|
if result.Success != 1 {
|
|
return result, fmt.Errorf("%s", result.Error)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// WithdrawCoinsToAddress initiates a withdrawal to a specified address
|
|
func (y *Yobit) WithdrawCoinsToAddress(coin string, amount float64, address string) (WithdrawCoinsToAddress, error) {
|
|
req := url.Values{}
|
|
req.Add("coinName", coin)
|
|
req.Add("amount", strconv.FormatFloat(amount, 'f', -1, 64))
|
|
req.Add("address", address)
|
|
|
|
result := WithdrawCoinsToAddress{}
|
|
|
|
err := y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateWithdrawCoinsToAddress, req, &result)
|
|
if err != nil {
|
|
return result, err
|
|
}
|
|
if result.Error != "" {
|
|
return result, errors.New(result.Error)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// CreateCoupon creates an exchange coupon for a sepcific currency
|
|
func (y *Yobit) CreateCoupon(currency string, amount float64) (CreateCoupon, error) {
|
|
req := url.Values{}
|
|
req.Add("currency", currency)
|
|
req.Add("amount", strconv.FormatFloat(amount, 'f', -1, 64))
|
|
|
|
var result CreateCoupon
|
|
|
|
err := y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateCreateCoupon, req, &result)
|
|
if err != nil {
|
|
return result, err
|
|
}
|
|
if result.Error != "" {
|
|
return result, errors.New(result.Error)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// RedeemCoupon redeems an exchange coupon
|
|
func (y *Yobit) RedeemCoupon(coupon string) (RedeemCoupon, error) {
|
|
req := url.Values{}
|
|
req.Add("coupon", coupon)
|
|
|
|
result := RedeemCoupon{}
|
|
|
|
err := y.SendAuthenticatedHTTPRequest(exchange.RestSpotSupplementary, privateRedeemCoupon, req, &result)
|
|
if err != nil {
|
|
return result, err
|
|
}
|
|
if result.Error != "" {
|
|
return result, errors.New(result.Error)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// SendHTTPRequest sends an unauthenticated HTTP request
|
|
func (y *Yobit) SendHTTPRequest(ep exchange.URL, path string, result interface{}) error {
|
|
endpoint, err := y.API.Endpoints.GetURL(ep)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return y.SendPayload(context.Background(), &request.Item{
|
|
Method: http.MethodGet,
|
|
Path: endpoint + path,
|
|
Result: result,
|
|
Verbose: y.Verbose,
|
|
HTTPDebugging: y.HTTPDebugging,
|
|
HTTPRecording: y.HTTPRecording,
|
|
})
|
|
}
|
|
|
|
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request to Yobit
|
|
func (y *Yobit) SendAuthenticatedHTTPRequest(ep exchange.URL, path string, params url.Values, result interface{}) (err error) {
|
|
if !y.AllowAuthenticatedRequest() {
|
|
return fmt.Errorf("%s %w", y.Name, exchange.ErrAuthenticatedRequestWithoutCredentialsSet)
|
|
}
|
|
endpoint, err := y.API.Endpoints.GetURL(ep)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if params == nil {
|
|
params = url.Values{}
|
|
}
|
|
|
|
n := y.Requester.GetNonce(false).String()
|
|
|
|
params.Set("nonce", n)
|
|
params.Set("method", path)
|
|
|
|
encoded := params.Encode()
|
|
hmac := crypto.GetHMAC(crypto.HashSHA512, []byte(encoded), []byte(y.API.Credentials.Secret))
|
|
|
|
if y.Verbose {
|
|
log.Debugf(log.ExchangeSys, "Sending POST request to %s calling path %s with params %s\n",
|
|
endpoint,
|
|
path,
|
|
encoded)
|
|
}
|
|
|
|
headers := make(map[string]string)
|
|
headers["Key"] = y.API.Credentials.Key
|
|
headers["Sign"] = crypto.HexEncodeToString(hmac)
|
|
headers["Content-Type"] = "application/x-www-form-urlencoded"
|
|
|
|
return y.SendPayload(context.Background(), &request.Item{
|
|
Method: http.MethodPost,
|
|
Path: endpoint,
|
|
Headers: headers,
|
|
Body: strings.NewReader(encoded),
|
|
Result: result,
|
|
AuthRequest: true,
|
|
NonceEnabled: true,
|
|
Verbose: y.Verbose,
|
|
HTTPDebugging: y.HTTPDebugging,
|
|
HTTPRecording: y.HTTPRecording,
|
|
})
|
|
}
|
|
|
|
// GetFee returns an estimate of fee based on type of transaction
|
|
func (y *Yobit) GetFee(feeBuilder *exchange.FeeBuilder) (float64, error) {
|
|
var fee float64
|
|
switch feeBuilder.FeeType {
|
|
case exchange.CryptocurrencyTradeFee:
|
|
fee = calculateTradingFee(feeBuilder.PurchasePrice, feeBuilder.Amount)
|
|
case exchange.CryptocurrencyWithdrawalFee:
|
|
fee = getWithdrawalFee(feeBuilder.Pair.Base)
|
|
case exchange.InternationalBankDepositFee:
|
|
fee = getInternationalBankDepositFee(feeBuilder.FiatCurrency,
|
|
feeBuilder.BankTransactionType)
|
|
case exchange.InternationalBankWithdrawalFee:
|
|
fee = getInternationalBankWithdrawalFee(feeBuilder.FiatCurrency,
|
|
feeBuilder.Amount,
|
|
feeBuilder.BankTransactionType)
|
|
case exchange.OfflineTradeFee:
|
|
fee = calculateTradingFee(feeBuilder.PurchasePrice, feeBuilder.Amount)
|
|
}
|
|
if fee < 0 {
|
|
fee = 0
|
|
}
|
|
|
|
return fee, nil
|
|
}
|
|
|
|
func calculateTradingFee(price, amount float64) (fee float64) {
|
|
return 0.002 * price * amount
|
|
}
|
|
|
|
func getWithdrawalFee(c currency.Code) float64 {
|
|
return WithdrawalFees[c]
|
|
}
|
|
|
|
func getInternationalBankWithdrawalFee(c currency.Code, amount float64, bankTransactionType exchange.InternationalBankTransactionType) float64 {
|
|
var fee float64
|
|
|
|
switch bankTransactionType {
|
|
case exchange.PerfectMoney:
|
|
if c == currency.USD {
|
|
fee = 0.02 * amount
|
|
}
|
|
case exchange.Payeer:
|
|
switch c {
|
|
case currency.USD:
|
|
fee = 0.03 * amount
|
|
case currency.RUR:
|
|
fee = 0.006 * amount
|
|
}
|
|
case exchange.AdvCash:
|
|
switch c {
|
|
case currency.USD:
|
|
fee = 0.04 * amount
|
|
case currency.RUR:
|
|
fee = 0.03 * amount
|
|
}
|
|
case exchange.Qiwi:
|
|
if c == currency.RUR {
|
|
fee = 0.04 * amount
|
|
}
|
|
case exchange.Capitalist:
|
|
if c == currency.USD {
|
|
fee = 0.06 * amount
|
|
}
|
|
}
|
|
|
|
return fee
|
|
}
|
|
|
|
// getInternationalBankDepositFee; No real fees for yobit deposits, but want to be explicit on what each payment type supports
|
|
func getInternationalBankDepositFee(c currency.Code, bankTransactionType exchange.InternationalBankTransactionType) float64 {
|
|
var fee float64
|
|
switch bankTransactionType {
|
|
case exchange.PerfectMoney:
|
|
if c == currency.USD {
|
|
fee = 0
|
|
}
|
|
case exchange.Payeer:
|
|
switch c {
|
|
case currency.USD:
|
|
fee = 0
|
|
case currency.RUR:
|
|
fee = 0
|
|
}
|
|
case exchange.AdvCash:
|
|
switch c {
|
|
case currency.USD:
|
|
fee = 0
|
|
case currency.RUR:
|
|
fee = 0
|
|
}
|
|
case exchange.Qiwi:
|
|
if c == currency.RUR {
|
|
fee = 0
|
|
}
|
|
case exchange.Capitalist:
|
|
switch c {
|
|
case currency.USD:
|
|
fee = 0
|
|
case currency.RUR:
|
|
fee = 0
|
|
}
|
|
}
|
|
|
|
return fee
|
|
}
|