package
0.0.0-20210125125813-27a8629619aa
Repository: https://github.com/thebotguys/golang-bittrex-api.git
Documentation: pkg.go.dev

# Functions

GetBTCPrice returns the current BTC Price.
GetLatestTick returns the latest tick of the specified market's candlestick chart, following the specified tick interval.
GetMarkets gets all markets data.
GetMarketSummaries gets the summary of all markets.
GetMarketSummary gets the summary of a single market.
GetOrderBook gets the current order book, made up by currently open orders.
GetTicks returns the ticks of the specified market's candlestick chart, following the specified tick interval.
IsAPIAlive returns true if the bittrex api is reachable with the current network connection.
SetCustomHTTPClient sets a custom client for requests.

# Constants

BaseURL represents the base URL for all requests.
BaseURL represents the base URL for all requests.
BaseURL represents the base URL for all requests.
BaseURL represents the base URL for all requests.

# Variables

CandleIntervals represent all valid intervals supported by the GetTicks and GetLatestTick calls.

# Structs

Auth represents the auth credentials to authenticate to the Bittrex API: It consists of a set of a private and a public key.
BTCPrice represents the BTC price at the specified timestamp.
CandleStick represents a single candlestick in a chart.
Market represents a market metadata (name, base currency, trade currency) and so forth.
MarketSummary is the summary data of a market (usually 24h summary).
MarketSummaryResult is a single unit of a MarketSummariesResult response and represents a single couple (Market Data, Market Summary) value.
OpenOrder represents a currently open order.

# Type aliases

CandleSticks is an array of CandleStick objects.
Markets is a set of markets.
MarketSummaries is a set of MarketSummary objects.
MarketSummariesResult is the response from a GetSummaries call.
OrderBook represents a set of public open Orders, which compose the OrderBook.