(symbol: string, interval: Interval = "30m", params: Dict = {})
| 5166 | } |
| 5167 | |
| 5168 | async deliveryMarkPriceKlines(symbol: string, interval: Interval = "30m", params: Dict = {}) { |
| 5169 | params.symbol = symbol; |
| 5170 | params.interval = interval; |
| 5171 | return await this.publicDeliveryRequest('v1/markPriceKlines', params); |
| 5172 | } |
| 5173 | |
| 5174 | async deliveryMarkPrice(symbol?: string, params: Dict = {}) { |
| 5175 | if (symbol) params.symbol = symbol; |
nothing calls this directly
no test coverage detected