Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GlobalMarket ¶
type GlobalMarket struct {
ActiveCurrencies int `json:"active_cryptocurrencies"`
ActiveMarkets int `json:"active_markets"`
BitcoinPercentageOfMarketCap float64 `json:"bitcoin_percentage_of_market_cap"`
LastUpdated int `json:"last_updated"`
Quotes map[string]*GlobalMarketQuote `json:"quotes"`
}
GlobalMarket struct
type GlobalMarketQuote ¶
type GlobalMarketQuote struct {
TotalMarketCap float64 `json:"total_market_cap"`
TotalVolume24H float64 `json:"total_volume_24h"`
}
GlobalMarketQuote struct
type Listing ¶
type Listing struct {
ID int `json:"id"`
Name string `json:"name"`
Symbol string `json:"symbol"`
Slug string `json:"website_slug"`
}
Listing struct
type Market ¶
type Market struct {
Rank int
Exchange string
Pair string
VolumeUSD float64
Price float64
VolumePercent float64
Updated string
}
Market struct
type MarketGraph ¶
type MarketGraph struct {
MarketCapByAvailableSupply [][]float64 `json:"market_cap_by_available_supply"`
VolumeUSD [][]float64 `json:"volume_usd"`
}
MarketGraph struct
type Ticker ¶
type Ticker struct {
ID int `json:"id"`
Name string `json:"name"`
Symbol string `json:"symbol"`
Slug string `json:"website_slug"`
Rank int `json:"rank"`
CirculatingSupply float64 `json:"circulating_supply"`
TotalSupply float64 `json:"total_supply"`
MaxSupply float64 `json:"max_supply"`
Quotes map[string]*TickerQuote `json:"quotes"`
LastUpdated int `json:"last_updated"`
}
Ticker struct
type TickerGraph ¶
type TickerGraph struct {
MarketCapByAvailableSupply [][]float64 `json:"market_cap_by_available_supply"`
PriceBTC [][]float64 `json:"price_btc"`
PriceUSD [][]float64 `json:"price_usd"`
VolumeUSD [][]float64 `json:"volume_usd"`
}
TickerGraph struct
type TickerQuote ¶
type TickerQuote struct {
Price float64 `json:"price"`
Volume24H float64 `json:"volume_24h"`
MarketCap float64 `json:"market_cap"`
PercentChange1H float64 `json:"percent_change_1h"`
PercentChange24H float64 `json:"percent_change_24h"`
PercentChange7D float64 `json:"percent_change_7d"`
}
TickerQuote struct
Click to show internal directories.
Click to hide internal directories.