* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/account/rest-api/Futures-Trading-Quantitative-Rules-Indicators#http-request * @param symbol symbol if the market * @param params extra parameters to be sent in the request * @returns
(symbol?: string, params: Dict = {})
| 4676 | * @returns |
| 4677 | */ |
| 4678 | async futuresTradingStatus(symbol?: string, params: Dict = {}) { |
| 4679 | if (symbol) params.symbol = symbol; |
| 4680 | return await this.privateFuturesRequest('v1/apiTradingStatus', params); |
| 4681 | } |
| 4682 | |
| 4683 | /** |
| 4684 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/account/rest-api/User-Commission-Rate#http-request |
nothing calls this directly
no test coverage detected