If ( data1.A_BuyPosition>0 )
{
data1.Entr_Vol=data1.A_BuyPosition;
data1.Entr_Price=data1.Q_AskPrice;
ts=data1.Sell(data1.Entr_Vol,data1.EntryPrice);
If (ts=True)
{
data1.Commentary("多平已经报");
}
else data1.Commentary("未报");
}
ts=返回为true 但是委托里面没有单子
你这是发了两遍么