3cinmode
3cinmode

Reputation: 11

Binance API futures adjust leverage

How can i adjust the leverage of an order using the following command

client.futures_create_order(symbol="VETUSDT", side"BUY", type="MARKET", quantity="100")

something like:

client.futures_create_order(symbol="VETUSDT", side"BUY", type="MARKET", quantity="100", leverage=5)

Thanks for any answer.

Upvotes: 1

Views: 1790

Answers (1)

reallydru
reallydru

Reputation: 11

Before you place the Trade, you first want to adjust the leverage

client.futures_change_leverage(symbol='VETUSDT', leverage=50)

This should be how it is done however I have had issues where this adjustment does not go through

Upvotes: 1

Related Questions