-
Notifications
You must be signed in to change notification settings - Fork 14
Markets
TaylorFacen edited this page Apr 11, 2020
·
4 revisions
Standard Methods
Enhanced Methods
get_markets - The markets endpoint returns information on the exchanges and markets that Nomics supports, in addition to the Nomics currency identifiers for the base and quote currency.
# Must provide at least one `exchange`, `currency`, `base`, or `quote` filtering parameter
nomics.Markets.get_markets(exchange = 'binance')get_market_cap_history - MarketCap History is the total market cap for all cryptoassets at intervals between the requested time period.
nomics.Markets.get_market_cap_history(
start = "2018-04-14T00:00:00Z",
end = "2018-06-14T00:00:00Z"
)get_exchange_markets_ticker - The Exchange Markets Ticker provides high level information about individual markets on exchanges integrated with Nomics. It provides metadata, the type of market, aggregation information, current financial data, and financial data over preset intervals.
# Must provide at least one `exchange`, `currency`, `base`, or `quote` filtering parameter
nomics.Markets. get_exchange_markets_ticker(exchange = 'binance')