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