计算手数
marginPerLotSell = GetGlobalVar(6) * ContractUnit * BigPointValue * (tmpMargin) / 100;// ===== 为四个账户分别计算手数 =====// 账户1手数计算(总资金2800000)Numeric totalBuyQty1 = IntPart(2800000 / marginPerLotBuy);Numeric totalSellQty1 = IntPart(2800000 / marginPerLotSell);01月13日 19:51我BigPointValue要不要乘?01月13日 19:52我// 动态手数计算marginPerLotBuy = GetGlobalVar(5) * ContractUnit * (tmpMargin) / 100;marginPerLotSell = GetGlobalVar(6) * ContractUnit * (tmpMargin) / 100;这样对么