MCPcopy Create free account
hub / github.com/sammchardy/python-binance / get_max_margin_transfer

Method get_max_margin_transfer

binance/client.py:5270–5293  ·  view source on GitHub ↗

Query max transfer-out amount https://developers.binance.com/docs/margin_trading/transfer/Query-Max-Transfer-Out-Amount :param asset: required :type asset: str :param isolatedSymbol: isolated symbol (if querying isolated margin) :type isolatedSymbol: str

(self, **params)

Source from the content-addressed store, hash-verified

5268 )
5269
5270 def get_max_margin_transfer(self, **params):
5271 """Query max transfer-out amount
5272
5273 https://developers.binance.com/docs/margin_trading/transfer/Query-Max-Transfer-Out-Amount
5274
5275 :param asset: required
5276 :type asset: str
5277 :param isolatedSymbol: isolated symbol (if querying isolated margin)
5278 :type isolatedSymbol: str
5279 :param recvWindow: the number of milliseconds the request is valid for
5280 :type recvWindow: int
5281
5282 :returns: API response
5283
5284 {
5285 "amount": "3.59498107"
5286 }
5287
5288 :raises: BinanceRequestException, BinanceAPIException
5289
5290 """
5291 return self._request_margin_api(
5292 "get", "margin/maxTransferable", signed=True, data=params
5293 )
5294
5295 def get_margin_delist_schedule(self, **params):
5296 """Get tokens or symbols delist schedule for cross margin and isolated margin

Calls 1

_request_margin_apiMethod · 0.95