The unified methods of exchanges might expect and will accept various params which affect their functionality, like:

params = {'type':'margin', 'isIsolated': 'TRUE'}  # --------------┑
# params will go as the last argument to the unified method       |
#                                                                 v
binance.create_order('BTC/USDT', 'limit', 'buy', amount, price, params)

<aside> 💡

unified 메소드같은 것들은 거래소마다 받는 파라미터가 다른데, 그 파라미터들은 마지막 인자로 전달한다는 뜻.

일반적인 타겟, 주문 종류, 수량, 가격 등은 그 앞의 파라미터로 공통적으로 받는다고함.

</aside>