我试图在strategy.exit()中使用qty_percent = 50卖出一半头寸,但是当我设置qty_percent时,图表上没有定单,但是如果我删除qty_percent,定单就会出现在图表上>
// This doesn't place the order
strategy.exit("Exit1", "Short", qty_percent=50, stop=short_Stop_Loss_Level, limit=Short_Take_Prof_Level_50)
// This works fine
strategy.exit("Exit1", "Short", stop=short_Stop_Loss_Level, limit=Short_Take_Prof_Level_50)
不确定我在做什么错吗?