TB的系统buy发单是不是有问题?
我的小段逻辑代码: //实盘时等待成交 Else If(V_SHIPAN==1) { //已经有实盘多持仓时 If(Abs(mypos.longCanSellVolume-mypos.shortCanCoverVolume)<>0 And mypos.longCanSellVolume>mypos.shortCanCoverVolume) { XH_FirstTime=Time*10000000%10000;//取时间戳毫秒 XH_FirstMinsEntry=Time*100%100*60+Time*10000%100;//取时间戳分钟 flag_buybook=0;flag_setbuybook=0; } Buy(V_shou, Close); Commentary("【等待多单成交】flag_setbuybook="+Text(flag_setbuybook)); return; }---------------------------------------这样的代码一直会调用Buy,但实际运行一直等待不会发buy委托单,如下图:——为何?