Hi, if I want to short a symbol using the binance futures api, do i put OrderSide.SELL or OrderSide.BUY. in other words, do I use function 1 or 2?
- request_client.post_order(symbol=symbol, side=OrderSide.SELL, positionSide= ‘SHORT’, ordertype=OrderType.MARKET , quantity = desired_quantity)
or
- request_client.post_order(symbol=symbol, side=OrderSide.BUY, positionSide= ‘SHORT’, ordertype=OrderType.MARKET , quantity = desired_quantity))