CCXT
nado

nado

nado cryptocurrency exchange — CCXT unified API: methods, parameters and endpoints.

🔌 Looking for raw exchange endpoints? See the nado implicit API — every endpoint in this exchange's API exposed as an implicit method.

nado

Kind: global class
Extends: Exchange

createOrder

create a trade order

Kind: instance method of nado
Returns: object - an order structure

See

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to create an order in
typestringYesmust be 'limit'
sidestringYes'buy' or 'sell'
amountfloatYeshow much of currency you want to trade in units of base currency
pricefloatNothe price at which the order is to be fulfilled, in units of the quote currency
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.expirationstring, intNoorder expiration timestamp in seconds, defaults to 4294967295
params.appendixstring, intNopre-encoded order appendix
params.reduceOnlybooleanNotrue if the order should only reduce position
params.postOnlybooleanNotrue to create a post-only order
params.timeInForcestringNo'GTC', 'IOC', 'FOK', or 'PO'
params.spotLeveragebooleanNowhether leverage should be used for spot, defaults to true, exchange-specific alias params.spot_leverage
params.triggerPricefloatNoswap only The price at which a trigger order is triggered at
params.stopLossPricefloatNoswap only The price at which a stop loss order is triggered at
params.takeProfitPricefloatNoswap only The price at which a take profit order is triggered at
params.triggerDirectionstringNotrigger direction, above, below
params.idintNoclient-provided request id, returned by the exchange in the response
nado.createOrder (symbol, type, side, amount, price?, params?)

editOrder

edit a trade order

Kind: instance method of nado
Returns: object - an order structure

See: https://docs.nado.xyz/developer-resources/api/gateway/executes/cancel-and-place

ParamTypeRequiredDescription
idstringYesorder id
symbolstringYesunified symbol of the market to edit an order in
typestringYesmust be 'limit'
sidestringYes'buy' or 'sell'
amountfloatYeshow much of currency you want to trade in units of base currency
pricefloatNothe price at which the order is to be fulfilled, in units of the quote currency
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.expirationstring, intNoorder expiration timestamp in seconds, defaults to 4294967295
params.appendixstring, intNopre-encoded order appendix
params.reduceOnlybooleanNotrue if the order should only reduce position
params.postOnlybooleanNotrue to create a post-only order
params.timeInForcestringNo'GTC', 'IOC', 'FOK', or 'PO'
params.spotLeveragebooleanNowhether leverage should be used for spot, defaults to true, exchange-specific alias params.spot_leverage
params.placeRequiresUnfilledbooleanNowhen true, aborts the new order if the canceled order had partial fills or the cancel failed, exchange-specific alias params.place_requires_unfilled, defaults to true
params.idintNoclient-provided request id, returned by the exchange in the response
nado.editOrder (id, symbol, type, side, amount, price?, params?)

cancelOrder

cancels an open order

Kind: instance method of nado
Returns: object - An order structure

See: https://docs.nado.xyz/developer-resources/api/gateway/executes/cancel-orders

ParamTypeRequiredDescription
idstringYesorder id
symbolstringYesunified symbol of the market the order was made in
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.requiredUnfilledAmountstringNocancel only if the order's absolute remaining unfilled amount matches this amount, exchange-specific raw x18 alias params.required_unfilled_amount
params.idintNoclient-provided request id, returned by the exchange in the response
nado.cancelOrder (id, symbol, params?)

cancelAllOrders

cancel all open orders

Kind: instance method of nado
Returns: Array<object> - a list of order structures

See: https://docs.nado.xyz/developer-resources/api/gateway/executes/cancel-product-orders

ParamTypeRequiredDescription
symbolstringNounified market symbol, when undefined all orders for all products are canceled
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.idintNoclient-provided request id, returned by the exchange in the response
params.triggerbooleanNoset to true if you would like to fetch portfolio margin account trigger or conditional orders
nado.cancelAllOrders (symbol?, params?)

cancelOrders

cancel multiple orders

Kind: instance method of nado
Returns: Array<object> - a list of order structures

See: https://docs.nado.xyz/developer-resources/api/gateway/executes/cancel-orders

ParamTypeRequiredDescription
idsArray<string>Yesorder ids
symbolstringYesunified market symbol
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.requiredUnfilledAmountstringNocancel only if the order's absolute remaining unfilled amount matches this amount, exchange-specific raw x18 alias params.required_unfilled_amount
params.idintNoclient-provided request id, returned by the exchange in the response
params.triggerbooleanNoset to true if you would like to fetch portfolio margin account trigger or conditional orders
nado.cancelOrders (ids, symbol, params?)

fetchOrder

fetches information on an order made by the user

Kind: instance method of nado
Returns: object - An order structure

See: https://docs.nado.xyz/developer-resources/api/gateway/queries/order

ParamTypeRequiredDescription
idstringYesorder id
symbolstringYesunified symbol of the market the order was made in
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.fetchOrder (id, symbol, params?)

fetchOrders

fetches information on multiple orders made by the user

Kind: instance method of nado
Returns: Array<Order> - a list of order structures

See

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNothe earliest time in ms to fetch orders for
limitintNothe maximum number of order structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.triggerbooleanNoset to true if you would like to fetch portfolio margin account trigger or conditional orders
nado.fetchOrders (symbol, since?, limit?, params?)

fetchOpenOrders

fetch all unfilled currently open orders

Kind: instance method of nado
Returns: Array<Order> - a list of order structures

See

ParamTypeRequiredDescription
symbolstringYesunified market symbol
sinceintNothe earliest time in ms to fetch open orders for
limitintNothe maximum number of open order structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.triggerbooleanNowhether the order is a trigger order
nado.fetchOpenOrders (symbol, since?, limit?, params?)

fetchClosedOrders

fetches information on multiple closed orders made by the user

Kind: instance method of nado
Returns: Array<Order> - a list of order structures

See

ParamTypeRequiredDescription
symbolstringNounified market symbol of the market orders were made in
sinceintNotimestamp in ms of the earliest order
limitintNothe maximum number of orders structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.untilintNotimestamp in ms of the latest order to fetch
params.triggerbooleanNowhether the order is a trigger order
nado.fetchClosedOrders (symbol?, since?, limit?, params?)

fetchCanceledOrders

fetches information on multiple canceled orders made by the user

Kind: instance method of nado
Returns: Array<object> - a list of order structures

See: https://docs.nado.xyz/developer-resources/api/trigger/queries/list-trigger-orders

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market the orders were made in
sinceintNothe earliest time in ms to fetch orders for
limitintNothe maximum number of order structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.triggerbooleanNoset to true if you would like to fetch portfolio margin account trigger or conditional orders
nado.fetchCanceledOrders (symbol, since?, limit?, params?)

fetchCanceledAndClosedOrders

fetches information on multiple canceled orders made by the user

Kind: instance method of nado
Returns: Array<object> - a list of order structures

See: https://docs.nado.xyz/developer-resources/api/trigger/queries/list-trigger-orders

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market the orders were made in
sinceintNothe earliest time in ms to fetch orders for
limitintNothe maximum number of order structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.triggerbooleanNoset to true if you would like to fetch portfolio margin account trigger or conditional orders
nado.fetchCanceledAndClosedOrders (symbol, since?, limit?, params?)

fetchMyTrades

fetch all trades made by the user

Kind: instance method of nado
Returns: Array<Trade> - a list of trade structures

See: https://docs.nado.xyz/developer-resources/api/archive-indexer/matches

ParamTypeRequiredDescription
symbolstringNounified market symbol
sinceintNotimestamp in ms of the earliest trade
limitintNothe maximum number of trades to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.untilintNotimestamp in ms of the latest trade to fetch
nado.fetchMyTrades (symbol?, since?, limit?, params?)

fetchBalance

query for balance and get the amount of funds available for trading or funds locked in orders

Kind: instance method of nado
Returns: object - a balance structure

See: https://docs.nado.xyz/developer-resources/api/gateway/queries/subaccount-info

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
nado.fetchBalance (params?)

fetchDeposits

fetch all deposits made to an account

Kind: instance method of nado
Returns: Array<object> - a list of transaction structures

See: https://docs.nado.xyz/developer-resources/api/archive-indexer/events

ParamTypeRequiredDescription
codestringNounified currency code
sinceintNothe earliest time in ms to fetch deposits for
limitintNothe maximum number of deposits structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.untilintNotimestamp in ms of the latest deposit to fetch
nado.fetchDeposits (code?, since?, limit?, params?)

fetchWithdrawals

fetch all withdrawals made from an account

Kind: instance method of nado
Returns: Array<object> - a list of transaction structures

See: https://docs.nado.xyz/developer-resources/api/archive-indexer/events

ParamTypeRequiredDescription
codestringNounified currency code
sinceintNothe earliest time in ms to fetch withdrawals for
limitintNothe maximum number of withdrawals structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
params.untilintNotimestamp in ms of the latest withdrawal to fetch
nado.fetchWithdrawals (code?, since?, limit?, params?)

fetchPositions

fetch all open positions

Kind: instance method of nado
Returns: Array<Position> - a list of position structures

See: https://docs.nado.xyz/developer-resources/api/gateway/queries/subaccount-info

ParamTypeRequiredDescription
symbolsArray<string>Nolist of unified market symbols
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
nado.fetchPositions (symbols?, params?)

fetchTime

fetches the current integer timestamp in milliseconds from the exchange server

Kind: instance method of nado
Returns: int - the current integer timestamp in milliseconds from the exchange server

See: https://docs.nado.xyz/developer-resources/api/gateway/edge#control-messages

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.fetchTime (params?)

fetchStatus

the latest known information on the availability of the exchange API

Kind: instance method of nado
Returns: object - a status structure

See: https://docs.nado.xyz/developer-resources/api/gateway/queries/status

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.fetchStatus (params?)

fetchMarkets

retrieves data on all markets for nado

Kind: instance method of nado
Returns: Array<object> - an array of objects representing market data

See

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.fetchMarkets (params?)

fetchCurrencies

fetches all available currencies on an exchange

Kind: instance method of nado
Returns: object - an associative dictionary of currencies

See: https://docs.nado.xyz/developer-resources/api/v2/assets

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.fetchCurrencies (params?)

fetchTickers

fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market

Kind: instance method of nado
Returns: object - a dictionary of ticker structures

See: https://docs.nado.xyz/developer-resources/api/v2/tickers

ParamTypeRequiredDescription
symbolsArray<string>, undefinedYesunified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.fetchTickers (symbols, params?)

fetchTicker

fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market

Kind: instance method of nado
Returns: object - a ticker structure

See: https://docs.nado.xyz/developer-resources/api/v2/tickers

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the ticker for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.fetchTicker (symbol, params?)

fetchFundingRate

fetch the current funding rate

Kind: instance method of nado
Returns: object - a funding rate structure

See: https://docs.nado.xyz/developer-resources/api/v2/contracts

ParamTypeRequiredDescription
symbolstringYesunified market symbol
paramsobjectNoextra parameters specific to the exchange API endpoint
params.edgebooleanNowhether to retrieve volume and open interest metrics for all chains, defaults to true
nado.fetchFundingRate (symbol, params?)

fetchFundingHistory

fetch the history of funding payments paid and received on this account

Kind: instance method of nado
Returns: Array<object> - a list of funding history structures

See: https://docs.nado.xyz/developer-resources/api/archive-indexer/interest-and-funding-payments

ParamTypeRequiredDescription
symbolstringYesunified market symbol
sinceintNothe earliest time in ms to fetch funding history for
limitintNothe maximum number of funding history structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
params.subaccountstringNothe 12-byte subaccount identifier, defaults to 'default'
nado.fetchFundingHistory (symbol, since?, limit?, params?)

fetchFundingRates

fetch the funding rate for multiple markets

Kind: instance method of nado
Returns: object - a dictionary of funding rate structures, indexed by market symbols

See: https://docs.nado.xyz/developer-resources/api/v2/contracts

ParamTypeRequiredDescription
symbolsArray<string>Nolist of unified market symbols
paramsobjectNoextra parameters specific to the exchange API endpoint
params.edgebooleanNowhether to retrieve volume and open interest metrics for all chains, defaults to true
nado.fetchFundingRates (symbols?, params?)

fetchOpenInterest

retrieves the open interest of a contract trading pair

Kind: instance method of nado
Returns: object - an open interest structure

See: https://docs.nado.xyz/developer-resources/api/v2/contracts

ParamTypeRequiredDescription
symbolstringYesunified CCXT market symbol
paramsobjectNoexchange specific parameters
params.edgebooleanNowhether to retrieve volume and open interest metrics for all chains, defaults to true
nado.fetchOpenInterest (symbol, params?)

fetchOpenInterests

retrieves the open interests of some currencies

Kind: instance method of nado
Returns: object - a dictionary of open interest structures

See: https://docs.nado.xyz/developer-resources/api/v2/contracts

ParamTypeRequiredDescription
symbolsArray<string>Nounified CCXT market symbols
paramsobjectNoexchange specific parameters
params.edgebooleanNowhether to retrieve volume and open interest metrics for all chains, defaults to true
nado.fetchOpenInterests (symbols?, params?)

fetchOrderBook

fetches information on open orders with bid (buy) and ask (sell) prices, volumes and other data

Kind: instance method of nado
Returns: object - A dictionary of order book structures

See: https://docs.nado.xyz/developer-resources/api/v2/orderbook

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the order book for
limitintNothe maximum amount of order book entries to return
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.fetchOrderBook (symbol, limit?, params?)

fetchTrades

get the list of the most recent trades for a particular symbol

Kind: instance method of nado
Returns: Array<Trade> - a list of trade structures

See: https://docs.nado.xyz/developer-resources/api/v2/trades

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch trades for
sinceintNotimestamp in ms of the earliest trade to fetch
limitintNothe maximum amount of trades to fetch
paramsobjectNoextra parameters specific to the exchange API endpoint
params.max_trade_idintNomax trade id to include in the result for pagination
nado.fetchTrades (symbol, since?, limit?, params?)

fetchOHLCV

fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market

Kind: instance method of nado
Returns: Array<Array<int>> - A list of candles ordered as timestamp, open, high, low, close, volume

See: https://docs.nado.xyz/developer-resources/api/archive-indexer/candlesticks

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch OHLCV data for
timeframestringYesthe length of time each candle represents
sinceintNotimestamp in ms of the earliest candle to fetch
limitintNothe maximum amount of candles to fetch
paramsobjectNoextra parameters specific to the exchange API endpoint
params.untilintNotimestamp in ms of the latest candle to fetch
nado.fetchOHLCV (symbol, timeframe, since?, limit?, params?)

watchTrades

watches information on multiple trades made in a market

Kind: instance method of nado
Returns: Array<Trade> - a list of trade structures

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch trades for
sinceintNotimestamp in ms of the earliest trade to fetch
limitintNothe maximum number of trades to fetch
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchTrades (symbol, since?, limit?, params?)

unWatchTrades

unWatches information on multiple trades made in a market

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to unwatch trades for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchTrades (symbol, params?)

watchTradesForSymbols

get the list of most recent trades for a list of symbols

Kind: instance method of nado
Returns: Array<Trade> - a list of trade structures

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsArray<string>Yesunified symbols of the markets to fetch trades for
sinceintNotimestamp in ms of the earliest trade to fetch
limitintNothe maximum number of trades to fetch
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchTradesForSymbols (symbols, since?, limit?, params?)

unWatchTradesForSymbols

unWatches information on multiple trades made in a list of markets

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsArray<string>Yesunified symbols of the markets to unwatch trades for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchTradesForSymbols (symbols, params?)

watchOrderBook

watches information on open orders with bid (buy) and ask (sell) prices, volumes and other data

Kind: instance method of nado
Returns: OrderBook - A dictionary of order book structures indexed by market symbols

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the order book for
limitintNothe maximum amount of order book entries to return
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchOrderBook (symbol, limit?, params?)

unWatchOrderBook

unWatches information on open orders with bid (buy) and ask (sell) prices, volumes and other data

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to unwatch the order book for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchOrderBook (symbol, params?)

watchOrderBookForSymbols

watches information on open orders with bid (buy) and ask (sell) prices, volumes and other data for a list of symbols

Kind: instance method of nado
Returns: OrderBook - A dictionary of order book structures indexed by market symbols

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsArray<string>Yesunified symbols of the markets to fetch the order book for
limitintNothe maximum amount of order book entries to return
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchOrderBookForSymbols (symbols, limit?, params?)

unWatchOrderBookForSymbols

unWatches information on open orders with bid (buy) and ask (sell) prices, volumes and other data for a list of symbols

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsArray<string>Yesunified symbols of the markets to unwatch the order book for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchOrderBookForSymbols (symbols, params?)

watchOHLCV

watches historical candlestick data containing the open, high, low, and close price, and the volume of a market

Kind: instance method of nado
Returns: Array<Array<int>> - A list of candles ordered as timestamp, open, high, low, close, volume

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch OHLCV data for
timeframestringYesthe length of time each candle represents
sinceintNotimestamp in ms of the earliest candle to fetch
limitintNothe maximum amount of candles to fetch
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchOHLCV (symbol, timeframe, since?, limit?, params?)

watchOHLCVForSymbols

watches historical candlestick data containing the open, high, low, and close price, and the volume of multiple markets

Kind: instance method of nado
Returns: object - A dictionary of OHLCV structures indexed by market symbols

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsAndTimeframesArray<Array<string>>Yesarray of arrays containing unified symbols and timeframes to watch OHLCV data for, example [['BTC/USDT0:USDT0', '1m'], ['ETH/USDT0:USDT0', '5m']]
sinceintNotimestamp in ms of the earliest candle to fetch
limitintNothe maximum amount of candles to fetch
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchOHLCVForSymbols (symbolsAndTimeframes, since?, limit?, params?)

unWatchOHLCV

unWatches historical candlestick data containing the open, high, low, and close price, and the volume of a market

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to unwatch OHLCV data for
timeframestringYesthe length of time each candle represents
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchOHLCV (symbol, timeframe, params?)

unWatchOHLCVForSymbols

unWatches historical candlestick data containing the open, high, low, and close price, and the volume of multiple markets

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsAndTimeframesArray<Array<string>>Yesarray of arrays containing unified symbols and timeframes to unwatch OHLCV data for, example [['BTC/USDT0:USDT0', '1m'], ['ETH/USDT0:USDT0', '5m']]
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchOHLCVForSymbols (symbolsAndTimeframes, params?)

watchTicker

watches a price ticker with the best bid and ask for a specific market

Kind: instance method of nado
Returns: object - a ticker structure

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the ticker for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchTicker (symbol, params?)

unWatchTicker

unWatches a price ticker with the best bid and ask for a specific market

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to unwatch the ticker for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchTicker (symbol, params?)

watchTickers

watches price tickers with the best bid and ask for all markets of a specific list

Kind: instance method of nado
Returns: object - a dictionary of ticker structures

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsArray<string>Nounified symbols of the markets to fetch the ticker for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchTickers (symbols?, params?)

unWatchTickers

unWatches price tickers with the best bid and ask for all markets of a specific list

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsArray<string>Nounified symbols of the markets to unwatch the ticker for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchTickers (symbols?, params?)

watchBidsAsks

watches best bid & ask for symbols

Kind: instance method of nado
Returns: object - a ticker structure

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsArray<string>Yesunified symbols of the markets to fetch the bids and asks for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchBidsAsks (symbols, params?)

unWatchBidsAsks

unWatches best bid & ask for symbols

Kind: instance method of nado
Returns: object - the exchange response

See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams

ParamTypeRequiredDescription
symbolsArray<string>Yesunified symbols of the markets to unwatch the bids and asks for
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchBidsAsks (symbols, params?)

watchOrders

watches information on multiple orders made by the user

Kind: instance method of nado
Returns: Array<object> - a list of order structures

See

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNothe earliest time in ms to fetch orders for
limitintNothe maximum number of order structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchOrders (symbol, since?, limit?, params?)

unWatchOrders

unWatches information on multiple orders made by the user

Kind: instance method of nado
Returns: object - the exchange response

See

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchOrders (symbol, params?)

watchMyTrades

watches information on multiple trades made by the user

Kind: instance method of nado
Returns: Array<object> - a list of trade structures

See

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNothe earliest time in ms to fetch trades for
limitintNothe maximum number of trade structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchMyTrades (symbol, since?, limit?, params?)

unWatchMyTrades

unWatches information on multiple trades made by the user

Kind: instance method of nado
Returns: object - the exchange response

See

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchMyTrades (symbol, params?)

watchPositions

watches information on user positions

Kind: instance method of nado
Returns: Array<object> - a list of position structures

See

ParamTypeRequiredDescription
symbolsArray<string>Nounified market symbols
sinceintNothe earliest time in ms to fetch positions for
limitintNothe maximum number of position structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.watchPositions (symbols?, since?, limit?, params?)

unWatchPositions

unWatches information on user positions

Kind: instance method of nado
Returns: object - the exchange response

See

ParamTypeRequiredDescription
symbolsArray<string>Nounified market symbols
paramsobjectNoextra parameters specific to the exchange API endpoint
nado.unWatchPositions (symbols?, params?)

On this page