* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/account/rest-api/Notional-and-Leverage-Brackets#http-request * @param symbol symbol if the market * @param params extra parameters to be sent in the request * @returns
(symbol?: string, params: Dict = {})
| 4665 | * @returns |
| 4666 | */ |
| 4667 | async futuresLeverageBracket(symbol?: string, params: Dict = {}) { |
| 4668 | if (symbol) params.symbol = symbol; |
| 4669 | return await this.privateFuturesRequest('v1/leverageBracket', params); |
| 4670 | } |
| 4671 | |
| 4672 | /** |
| 4673 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/account/rest-api/Futures-Trading-Quantitative-Rules-Indicators#http-request |
nothing calls this directly
no test coverage detected