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

Method futuresUserTrades

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

* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Account-Trade-List * @param params extra parameters to be sent in the request * @returns

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

Source from the content-addressed store, hash-verified

4609 * @returns
4610 */
4611 async futuresUserTrades(symbol: string, params: Dict = {}): Promise<FuturesUserTrade[]> {
4612 params.symbol = symbol;
4613 return await this.privateFuturesRequest('v1/userTrades', params);
4614 }
4615
4616 async futuresGetDataStream(params: Dict = {}) {
4617 //A User Data Stream listenKey is valid for 60 minutes after creation. setInterval

Callers

nothing calls this directly

Calls 1

privateFuturesRequestMethod · 0.95

Tested by

no test coverage detected