MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / deliveryLeverage

Method deliveryLeverage

src/node-binance-api.ts:5237–5241  ·  view source on GitHub ↗
(symbol: string, leverage: number, params: Dict = {})

Source from the content-addressed store, hash-verified

5235
5236 // leverage 1 to 125
5237 async deliveryLeverage(symbol: string, leverage: number, params: Dict = {}) {
5238 params.symbol = symbol;
5239 params.leverage = leverage;
5240 return await this.privateDeliveryRequest('v1/leverage', params, 'POST');
5241 }
5242
5243 // ISOLATED, CROSSED
5244 async deliveryMarginType(symbol: string, marginType: string, params: Dict = {}) {

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected