package
0.0.0-20171114074457-1ca42c647fba
Repository: https://github.com/yellowred/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.
GetServerAPIVersion returns the version which is currently running on the server.
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.

# 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.
ConnectOptions represents custom Connect Configurations for HTTP requests.
Market represents a market metadata (name, base currency, trade currency) and so forth.
MarketSummary is the summary data of a market (usually 24h summary).
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.
OrderBook represents a set of public open Orders, which compose the OrderBook.