CCXT ByBit 平仓

问题描述 投票:0回答:1

我正在使用 ccxt 连接到 ByBit 并创建订单。

symbol = 'SOLUSDT'
trade_res = exchange.create_order(symbol, amount=1, type='Market', side='Buy')

上面的代码片段用 USDT 购买 1 SOL。当我尝试通过下达卖单平仓时,我看到 ByBit 在 SOL 上放置了另一个空头头寸,但没有平掉多头头寸(控制台中出现 2 个头寸):

enter image description here

如何使用 ccxt 在 ByBit 上平仓?

python position ccxt
1个回答
6
投票

reduceOnly
添加到
params
以退出期货订单

symbol = 'SOLUSDT'
trade_res = exchange.create_order(symbol, amount=1, type='Market', side='sell', params={'reduceOnly': true})
© www.soinside.com 2019 - 2024. All rights reserved.