* @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 = {})
| 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 |
nothing calls this directly
no test coverage detected