wiki/exchanges/nado.md
<a name="nado" id="nado"></a>
Kind: global class
Extends: <code>Exchange</code>
<a name="createOrder" id="createorder"></a>
create a trade order
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - an order structure
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to create an order in |
| type | <code>string</code> | Yes | must be 'limit' |
| side | <code>string</code> | Yes | 'buy' or 'sell' |
| amount | <code>float</code> | Yes | how much of currency you want to trade in units of base currency |
| price | <code>float</code> | No | the price at which the order is to be fulfilled, in units of the quote currency |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.expiration | <code>string</code>, <code>int</code> | No | order expiration timestamp in seconds, defaults to 4294967295 |
| params.appendix | <code>string</code>, <code>int</code> | No | pre-encoded order appendix |
| params.reduceOnly | <code>boolean</code> | No | true if the order should only reduce position |
| params.postOnly | <code>boolean</code> | No | true to create a post-only order |
| params.timeInForce | <code>string</code> | No | 'GTC', 'IOC', 'FOK', or 'PO' |
| params.spotLeverage | <code>boolean</code> | No | whether leverage should be used for spot, defaults to true, exchange-specific alias params.spot_leverage |
| params.triggerPrice | <code>float</code> | No | swap only The price at which a trigger order is triggered at |
| params.stopLossPrice | <code>float</code> | No | swap only The price at which a stop loss order is triggered at |
| params.takeProfitPrice | <code>float</code> | No | swap only The price at which a take profit order is triggered at |
| params.triggerDirection | <code>string</code> | No | trigger direction, above, below |
| params.id | <code>int</code> | No | client-provided request id, returned by the exchange in the response |
nado.createOrder (symbol, type, side, amount, price?, params?)
<a name="editOrder" id="editorder"></a>
edit a trade order
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - an order structure
See: https://docs.nado.xyz/developer-resources/api/gateway/executes/cancel-and-place
| Param | Type | Required | Description |
|---|---|---|---|
| id | <code>string</code> | Yes | order id |
| symbol | <code>string</code> | Yes | unified symbol of the market to edit an order in |
| type | <code>string</code> | Yes | must be 'limit' |
| side | <code>string</code> | Yes | 'buy' or 'sell' |
| amount | <code>float</code> | Yes | how much of currency you want to trade in units of base currency |
| price | <code>float</code> | No | the price at which the order is to be fulfilled, in units of the quote currency |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.expiration | <code>string</code>, <code>int</code> | No | order expiration timestamp in seconds, defaults to 4294967295 |
| params.appendix | <code>string</code>, <code>int</code> | No | pre-encoded order appendix |
| params.reduceOnly | <code>boolean</code> | No | true if the order should only reduce position |
| params.postOnly | <code>boolean</code> | No | true to create a post-only order |
| params.timeInForce | <code>string</code> | No | 'GTC', 'IOC', 'FOK', or 'PO' |
| params.spotLeverage | <code>boolean</code> | No | whether leverage should be used for spot, defaults to true, exchange-specific alias params.spot_leverage |
| params.placeRequiresUnfilled | <code>boolean</code> | No | when 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.id | <code>int</code> | No | client-provided request id, returned by the exchange in the response |
nado.editOrder (id, symbol, type, side, amount, price?, params?)
<a name="cancelOrder" id="cancelorder"></a>
cancels an open order
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - An order structure
See: https://docs.nado.xyz/developer-resources/api/gateway/executes/cancel-orders
| Param | Type | Required | Description |
|---|---|---|---|
| id | <code>string</code> | Yes | order id |
| symbol | <code>string</code> | Yes | unified symbol of the market the order was made in |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.requiredUnfilledAmount | <code>string</code> | No | cancel only if the order's absolute remaining unfilled amount matches this amount, exchange-specific raw x18 alias params.required_unfilled_amount |
| params.id | <code>int</code> | No | client-provided request id, returned by the exchange in the response |
nado.cancelOrder (id, symbol, params?)
<a name="cancelAllOrders" id="cancelallorders"></a>
cancel all open orders
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of order structures
See: https://docs.nado.xyz/developer-resources/api/gateway/executes/cancel-product-orders
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | No | unified market symbol, when undefined all orders for all products are canceled |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.id | <code>int</code> | No | client-provided request id, returned by the exchange in the response |
| params.trigger | <code>boolean</code> | No | set to true if you would like to fetch portfolio margin account trigger or conditional orders |
nado.cancelAllOrders (symbol?, params?)
<a name="cancelOrders" id="cancelorders"></a>
cancel multiple orders
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of order structures
See: https://docs.nado.xyz/developer-resources/api/gateway/executes/cancel-orders
| Param | Type | Required | Description |
|---|---|---|---|
| ids | <code>Array<string></code> | Yes | order ids |
| symbol | <code>string</code> | Yes | unified market symbol |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.requiredUnfilledAmount | <code>string</code> | No | cancel only if the order's absolute remaining unfilled amount matches this amount, exchange-specific raw x18 alias params.required_unfilled_amount |
| params.id | <code>int</code> | No | client-provided request id, returned by the exchange in the response |
| params.trigger | <code>boolean</code> | No | set to true if you would like to fetch portfolio margin account trigger or conditional orders |
nado.cancelOrders (ids, symbol, params?)
<a name="fetchOrder" id="fetchorder"></a>
fetches information on an order made by the user
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - An order structure
See: https://docs.nado.xyz/developer-resources/api/gateway/queries/order
| Param | Type | Required | Description |
|---|---|---|---|
| id | <code>string</code> | Yes | order id |
| symbol | <code>string</code> | Yes | unified symbol of the market the order was made in |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.fetchOrder (id, symbol, params?)
<a name="fetchOrders" id="fetchorders"></a>
fetches information on multiple orders made by the user
Kind: instance method of <code>nado</code>
Returns: <code>Array<Order></code> - a list of order structures
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market orders were made in |
| since | <code>int</code> | No | the earliest time in ms to fetch orders for |
| limit | <code>int</code> | No | the maximum number of order structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.trigger | <code>boolean</code> | No | set to true if you would like to fetch portfolio margin account trigger or conditional orders |
nado.fetchOrders (symbol, since?, limit?, params?)
<a name="fetchOpenOrders" id="fetchopenorders"></a>
fetch all unfilled currently open orders
Kind: instance method of <code>nado</code>
Returns: <code>Array<Order></code> - a list of order structures
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol |
| since | <code>int</code> | No | the earliest time in ms to fetch open orders for |
| limit | <code>int</code> | No | the maximum number of open order structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.trigger | <code>boolean</code> | No | whether the order is a trigger order |
nado.fetchOpenOrders (symbol, since?, limit?, params?)
<a name="fetchClosedOrders" id="fetchclosedorders"></a>
fetches information on multiple closed orders made by the user
Kind: instance method of <code>nado</code>
Returns: <code>Array<Order></code> - a list of order structures
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | No | unified market symbol of the market orders were made in |
| since | <code>int</code> | No | timestamp in ms of the earliest order |
| limit | <code>int</code> | No | the maximum number of orders structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.until | <code>int</code> | No | timestamp in ms of the latest order to fetch |
| params.trigger | <code>boolean</code> | No | whether the order is a trigger order |
nado.fetchClosedOrders (symbol?, since?, limit?, params?)
<a name="fetchCanceledOrders" id="fetchcanceledorders"></a>
fetches information on multiple canceled orders made by the user
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of order structures
See: https://docs.nado.xyz/developer-resources/api/trigger/queries/list-trigger-orders
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market the orders were made in |
| since | <code>int</code> | No | the earliest time in ms to fetch orders for |
| limit | <code>int</code> | No | the maximum number of order structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.trigger | <code>boolean</code> | No | set to true if you would like to fetch portfolio margin account trigger or conditional orders |
nado.fetchCanceledOrders (symbol, since?, limit?, params?)
<a name="fetchCanceledAndClosedOrders" id="fetchcanceledandclosedorders"></a>
fetches information on multiple canceled orders made by the user
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of order structures
See: https://docs.nado.xyz/developer-resources/api/trigger/queries/list-trigger-orders
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market the orders were made in |
| since | <code>int</code> | No | the earliest time in ms to fetch orders for |
| limit | <code>int</code> | No | the maximum number of order structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.trigger | <code>boolean</code> | No | set to true if you would like to fetch portfolio margin account trigger or conditional orders |
nado.fetchCanceledAndClosedOrders (symbol, since?, limit?, params?)
<a name="fetchMyTrades" id="fetchmytrades"></a>
fetch all trades made by the user
Kind: instance method of <code>nado</code>
Returns: <code>Array<Trade></code> - a list of trade structures
See: https://docs.nado.xyz/developer-resources/api/archive-indexer/matches
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | No | unified market symbol |
| since | <code>int</code> | No | timestamp in ms of the earliest trade |
| limit | <code>int</code> | No | the maximum number of trades to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.until | <code>int</code> | No | timestamp in ms of the latest trade to fetch |
nado.fetchMyTrades (symbol?, since?, limit?, params?)
<a name="fetchBalance" id="fetchbalance"></a>
query for balance and get the amount of funds available for trading or funds locked in orders
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a balance structure
See: https://docs.nado.xyz/developer-resources/api/gateway/queries/subaccount-info
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
nado.fetchBalance (params?)
<a name="fetchDeposits" id="fetchdeposits"></a>
fetch all deposits made to an account
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of transaction structures
See: https://docs.nado.xyz/developer-resources/api/archive-indexer/events
| Param | Type | Required | Description |
|---|---|---|---|
| code | <code>string</code> | No | unified currency code |
| since | <code>int</code> | No | the earliest time in ms to fetch deposits for |
| limit | <code>int</code> | No | the maximum number of deposits structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.until | <code>int</code> | No | timestamp in ms of the latest deposit to fetch |
nado.fetchDeposits (code?, since?, limit?, params?)
<a name="fetchWithdrawals" id="fetchwithdrawals"></a>
fetch all withdrawals made from an account
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of transaction structures
See: https://docs.nado.xyz/developer-resources/api/archive-indexer/events
| Param | Type | Required | Description |
|---|---|---|---|
| code | <code>string</code> | No | unified currency code |
| since | <code>int</code> | No | the earliest time in ms to fetch withdrawals for |
| limit | <code>int</code> | No | the maximum number of withdrawals structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
| params.until | <code>int</code> | No | timestamp in ms of the latest withdrawal to fetch |
nado.fetchWithdrawals (code?, since?, limit?, params?)
<a name="fetchPositions" id="fetchpositions"></a>
fetch all open positions
Kind: instance method of <code>nado</code>
Returns: <code>Array<Position></code> - a list of position structures
See: https://docs.nado.xyz/developer-resources/api/gateway/queries/subaccount-info
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | No | list of unified market symbols |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
nado.fetchPositions (symbols?, params?)
<a name="fetchTime" id="fetchtime"></a>
fetches the current integer timestamp in milliseconds from the exchange server
Kind: instance method of <code>nado</code>
Returns: <code>int</code> - the current integer timestamp in milliseconds from the exchange server
See: https://docs.nado.xyz/developer-resources/api/gateway/edge#control-messages
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.fetchTime (params?)
<a name="fetchStatus" id="fetchstatus"></a>
the latest known information on the availability of the exchange API
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a status structure
See: https://docs.nado.xyz/developer-resources/api/gateway/queries/status
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.fetchStatus (params?)
<a name="fetchMarkets" id="fetchmarkets"></a>
retrieves data on all markets for nado
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - an array of objects representing market data
See
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.fetchMarkets (params?)
<a name="fetchCurrencies" id="fetchcurrencies"></a>
fetches all available currencies on an exchange
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - an associative dictionary of currencies
See: https://docs.nado.xyz/developer-resources/api/v2/assets
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.fetchCurrencies (params?)
<a name="fetchTickers" id="fetchtickers"></a>
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a dictionary of ticker structures
See: https://docs.nado.xyz/developer-resources/api/v2/tickers
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code>, <code>undefined</code> | Yes | unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.fetchTickers (symbols, params?)
<a name="fetchTicker" id="fetchticker"></a>
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a ticker structure
See: https://docs.nado.xyz/developer-resources/api/v2/tickers
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch the ticker for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.fetchTicker (symbol, params?)
<a name="fetchFundingRate" id="fetchfundingrate"></a>
fetch the current funding rate
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a funding rate structure
See: https://docs.nado.xyz/developer-resources/api/v2/contracts
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.edge | <code>boolean</code> | No | whether to retrieve volume and open interest metrics for all chains, defaults to true |
nado.fetchFundingRate (symbol, params?)
<a name="fetchFundingHistory" id="fetchfundinghistory"></a>
fetch the history of funding payments paid and received on this account
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of funding history structures
See: https://docs.nado.xyz/developer-resources/api/archive-indexer/interest-and-funding-payments
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol |
| since | <code>int</code> | No | the earliest time in ms to fetch funding history for |
| limit | <code>int</code> | No | the maximum number of funding history structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.subaccount | <code>string</code> | No | the 12-byte subaccount identifier, defaults to 'default' |
nado.fetchFundingHistory (symbol, since?, limit?, params?)
<a name="fetchFundingRates" id="fetchfundingrates"></a>
fetch the funding rate for multiple markets
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a dictionary of funding rate structures, indexed by market symbols
See: https://docs.nado.xyz/developer-resources/api/v2/contracts
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | No | list of unified market symbols |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.edge | <code>boolean</code> | No | whether to retrieve volume and open interest metrics for all chains, defaults to true |
nado.fetchFundingRates (symbols?, params?)
<a name="fetchOpenInterest" id="fetchopeninterest"></a>
retrieves the open interest of a contract trading pair
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - an open interest structure
See: https://docs.nado.xyz/developer-resources/api/v2/contracts
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified CCXT market symbol |
| params | <code>object</code> | No | exchange specific parameters |
| params.edge | <code>boolean</code> | No | whether to retrieve volume and open interest metrics for all chains, defaults to true |
nado.fetchOpenInterest (symbol, params?)
<a name="fetchOpenInterests" id="fetchopeninterests"></a>
retrieves the open interests of some currencies
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a dictionary of open interest structures
See: https://docs.nado.xyz/developer-resources/api/v2/contracts
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | No | unified CCXT market symbols |
| params | <code>object</code> | No | exchange specific parameters |
| params.edge | <code>boolean</code> | No | whether to retrieve volume and open interest metrics for all chains, defaults to true |
nado.fetchOpenInterests (symbols?, params?)
<a name="fetchOrderBook" id="fetchorderbook"></a>
fetches information on open orders with bid (buy) and ask (sell) prices, volumes and other data
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - A dictionary of order book structures
See: https://docs.nado.xyz/developer-resources/api/v2/orderbook
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch the order book for |
| limit | <code>int</code> | No | the maximum amount of order book entries to return |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.fetchOrderBook (symbol, limit?, params?)
<a name="fetchTrades" id="fetchtrades"></a>
get the list of the most recent trades for a particular symbol
Kind: instance method of <code>nado</code>
Returns: <code>Array<Trade></code> - a list of trade structures
See: https://docs.nado.xyz/developer-resources/api/v2/trades
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch trades for |
| since | <code>int</code> | No | timestamp in ms of the earliest trade to fetch |
| limit | <code>int</code> | No | the maximum amount of trades to fetch |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.max_trade_id | <code>int</code> | No | max trade id to include in the result for pagination |
nado.fetchTrades (symbol, since?, limit?, params?)
<a name="fetchOHLCV" id="fetchohlcv"></a>
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
Kind: instance method of <code>nado</code>
Returns: <code>Array<Array<int>></code> - A list of candles ordered as timestamp, open, high, low, close, volume
See: https://docs.nado.xyz/developer-resources/api/archive-indexer/candlesticks
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch OHLCV data for |
| timeframe | <code>string</code> | Yes | the length of time each candle represents |
| since | <code>int</code> | No | timestamp in ms of the earliest candle to fetch |
| limit | <code>int</code> | No | the maximum amount of candles to fetch |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.until | <code>int</code> | No | timestamp in ms of the latest candle to fetch |
nado.fetchOHLCV (symbol, timeframe, since?, limit?, params?)
<a name="watchTrades" id="watchtrades"></a>
watches information on multiple trades made in a market
Kind: instance method of <code>nado</code>
Returns: <code>Array<Trade></code> - a list of trade structures
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch trades for |
| since | <code>int</code> | No | timestamp in ms of the earliest trade to fetch |
| limit | <code>int</code> | No | the maximum number of trades to fetch |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchTrades (symbol, since?, limit?, params?)
<a name="unWatchTrades" id="unwatchtrades"></a>
unWatches information on multiple trades made in a market
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to unwatch trades for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchTrades (symbol, params?)
<a name="watchTradesForSymbols" id="watchtradesforsymbols"></a>
get the list of most recent trades for a list of symbols
Kind: instance method of <code>nado</code>
Returns: <code>Array<Trade></code> - a list of trade structures
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | Yes | unified symbols of the markets to fetch trades for |
| since | <code>int</code> | No | timestamp in ms of the earliest trade to fetch |
| limit | <code>int</code> | No | the maximum number of trades to fetch |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchTradesForSymbols (symbols, since?, limit?, params?)
<a name="unWatchTradesForSymbols" id="unwatchtradesforsymbols"></a>
unWatches information on multiple trades made in a list of markets
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | Yes | unified symbols of the markets to unwatch trades for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchTradesForSymbols (symbols, params?)
<a name="watchOrderBook" id="watchorderbook"></a>
watches information on open orders with bid (buy) and ask (sell) prices, volumes and other data
Kind: instance method of <code>nado</code>
Returns: <code>OrderBook</code> - A dictionary of order book structures indexed by market symbols
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch the order book for |
| limit | <code>int</code> | No | the maximum amount of order book entries to return |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchOrderBook (symbol, limit?, params?)
<a name="unWatchOrderBook" id="unwatchorderbook"></a>
unWatches information on open orders with bid (buy) and ask (sell) prices, volumes and other data
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to unwatch the order book for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchOrderBook (symbol, params?)
<a name="watchOrderBookForSymbols" id="watchorderbookforsymbols"></a>
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 <code>nado</code>
Returns: <code>OrderBook</code> - A dictionary of order book structures indexed by market symbols
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | Yes | unified symbols of the markets to fetch the order book for |
| limit | <code>int</code> | No | the maximum amount of order book entries to return |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchOrderBookForSymbols (symbols, limit?, params?)
<a name="unWatchOrderBookForSymbols" id="unwatchorderbookforsymbols"></a>
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 <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | Yes | unified symbols of the markets to unwatch the order book for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchOrderBookForSymbols (symbols, params?)
<a name="watchOHLCV" id="watchohlcv"></a>
watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
Kind: instance method of <code>nado</code>
Returns: <code>Array<Array<int>></code> - A list of candles ordered as timestamp, open, high, low, close, volume
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch OHLCV data for |
| timeframe | <code>string</code> | Yes | the length of time each candle represents |
| since | <code>int</code> | No | timestamp in ms of the earliest candle to fetch |
| limit | <code>int</code> | No | the maximum amount of candles to fetch |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchOHLCV (symbol, timeframe, since?, limit?, params?)
<a name="watchOHLCVForSymbols" id="watchohlcvforsymbols"></a>
watches historical candlestick data containing the open, high, low, and close price, and the volume of multiple markets
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - A dictionary of OHLCV structures indexed by market symbols
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbolsAndTimeframes | <code>Array<Array<string>></code> | Yes | array of arrays containing unified symbols and timeframes to watch OHLCV data for, example [['BTC/USDT0:USDT0', '1m'], ['ETH/USDT0:USDT0', '5m']] |
| since | <code>int</code> | No | timestamp in ms of the earliest candle to fetch |
| limit | <code>int</code> | No | the maximum amount of candles to fetch |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchOHLCVForSymbols (symbolsAndTimeframes, since?, limit?, params?)
<a name="unWatchOHLCV" id="unwatchohlcv"></a>
unWatches historical candlestick data containing the open, high, low, and close price, and the volume of a market
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to unwatch OHLCV data for |
| timeframe | <code>string</code> | Yes | the length of time each candle represents |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchOHLCV (symbol, timeframe, params?)
<a name="unWatchOHLCVForSymbols" id="unwatchohlcvforsymbols"></a>
unWatches historical candlestick data containing the open, high, low, and close price, and the volume of multiple markets
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbolsAndTimeframes | <code>Array<Array<string>></code> | Yes | array of arrays containing unified symbols and timeframes to unwatch OHLCV data for, example [['BTC/USDT0:USDT0', '1m'], ['ETH/USDT0:USDT0', '5m']] |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchOHLCVForSymbols (symbolsAndTimeframes, params?)
<a name="watchTicker" id="watchticker"></a>
watches a price ticker with the best bid and ask for a specific market
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a ticker structure
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch the ticker for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchTicker (symbol, params?)
<a name="unWatchTicker" id="unwatchticker"></a>
unWatches a price ticker with the best bid and ask for a specific market
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to unwatch the ticker for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchTicker (symbol, params?)
<a name="watchTickers" id="watchtickers"></a>
watches price tickers with the best bid and ask for all markets of a specific list
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a dictionary of ticker structures
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | No | unified symbols of the markets to fetch the ticker for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchTickers (symbols?, params?)
<a name="unWatchTickers" id="unwatchtickers"></a>
unWatches price tickers with the best bid and ask for all markets of a specific list
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | No | unified symbols of the markets to unwatch the ticker for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchTickers (symbols?, params?)
<a name="watchBidsAsks" id="watchbidsasks"></a>
watches best bid & ask for symbols
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - a ticker structure
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | Yes | unified symbols of the markets to fetch the bids and asks for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchBidsAsks (symbols, params?)
<a name="unWatchBidsAsks" id="unwatchbidsasks"></a>
unWatches best bid & ask for symbols
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See: https://docs.nado.xyz/developer-resources/api/subscriptions/streams
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | Yes | unified symbols of the markets to unwatch the bids and asks for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchBidsAsks (symbols, params?)
<a name="watchOrders" id="watchorders"></a>
watches information on multiple orders made by the user
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of order structures
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market orders were made in |
| since | <code>int</code> | No | the earliest time in ms to fetch orders for |
| limit | <code>int</code> | No | the maximum number of order structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchOrders (symbol, since?, limit?, params?)
<a name="unWatchOrders" id="unwatchorders"></a>
unWatches information on multiple orders made by the user
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market orders were made in |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchOrders (symbol, params?)
<a name="watchMyTrades" id="watchmytrades"></a>
watches information on multiple trades made by the user
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of trade structures
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market orders were made in |
| since | <code>int</code> | No | the earliest time in ms to fetch trades for |
| limit | <code>int</code> | No | the maximum number of trade structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchMyTrades (symbol, since?, limit?, params?)
<a name="unWatchMyTrades" id="unwatchmytrades"></a>
unWatches information on multiple trades made by the user
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market orders were made in |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchMyTrades (symbol, params?)
<a name="watchPositions" id="watchpositions"></a>
watches information on user positions
Kind: instance method of <code>nado</code>
Returns: <code>Array<object></code> - a list of position structures
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | No | unified market symbols |
| since | <code>int</code> | No | the earliest time in ms to fetch positions for |
| limit | <code>int</code> | No | the maximum number of position structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.watchPositions (symbols?, since?, limit?, params?)
<a name="unWatchPositions" id="unwatchpositions"></a>
unWatches information on user positions
Kind: instance method of <code>nado</code>
Returns: <code>object</code> - the exchange response
See
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | No | unified market symbols |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
nado.unWatchPositions (symbols?, params?)