* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Compressed-Aggregate-Trades-List
(symbol: string, params: Dict = {})
| 4582 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Compressed-Aggregate-Trades-List |
| 4583 | */ |
| 4584 | async futuresAggTrades(symbol: string, params: Dict = {}): Promise<AggregatedTrade[]> { |
| 4585 | params.symbol = symbol; |
| 4586 | return await this.publicFuturesRequest('v1/aggTrades', params); |
| 4587 | } |
| 4588 | |
| 4589 | /** |
| 4590 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Users-Force-Orders |
nothing calls this directly
no test coverage detected