(symbol: string, params: Dict = {})
| 5177 | } |
| 5178 | |
| 5179 | async deliveryTrades(symbol: string, params: Dict = {}) { |
| 5180 | params.symbol = symbol; |
| 5181 | return await this.publicDeliveryRequest('v1/trades', params); |
| 5182 | } |
| 5183 | |
| 5184 | async deliveryHistoricalTrades(symbol: string, params: Dict = {}) { |
| 5185 | params.symbol = symbol; |
nothing calls this directly
no test coverage detected