(symbol?: string, params: Dict = {})
| 5127 | } |
| 5128 | |
| 5129 | async deliveryDaily(symbol?: string, params: Dict = {}) { |
| 5130 | if (symbol) params.symbol = symbol; |
| 5131 | const data = await this.publicDeliveryRequest('v1/ticker/24hr', params); |
| 5132 | return symbol ? data : data.reduce((out, i) => ((out[i.symbol] = i), out), {}); |
| 5133 | } |
| 5134 | |
| 5135 | async deliveryOpenInterest(symbol: string, params: Dict = {}) { |
| 5136 | params.symbol = symbol; |
nothing calls this directly
no test coverage detected