MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / futuresTrades

Method futuresTrades

src/node-binance-api.ts:4565–4568  ·  view source on GitHub ↗

* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Recent-Trades-List * @param symbol symbol if the market * @param params extra parameters to be sent in the request * @returns

(symbol: string, params: Dict = {})

Source from the content-addressed store, hash-verified

4563 * @returns
4564 */
4565 async futuresTrades(symbol: string, params: Dict = {}): Promise<Trade[]> {
4566 params.symbol = symbol;
4567 return await this.publicFuturesRequest('v1/trades', params);
4568 }
4569
4570 /**
4571 * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Old-Trades-Lookup

Callers 2

static-tests.mjsFile · 0.80

Calls 1

publicFuturesRequestMethod · 0.95

Tested by

no test coverage detected