module Binance::Spot::Margin

def enable_isolated_margin_account(symbol:, **kwargs)

Other tags:
    See: https://binance-docs.github.io/apidocs/spot/en/#enable-isolated-margin-account-trade -

Options Hash: (**kwargs)
  • :recvWindow (Integer) -- The value cannot be greater than 60000

Parameters:
  • kwargs (Hash) --
  • symbol (String) --
def enable_isolated_margin_account(symbol:, **kwargs)
  Binance::Utils::Validation.require_param('symbol', symbol)
  @session.sign_request(:post, '/sapi/v1/margin/isolated/account', params: kwargs.merge(symbol: symbol))
end