以文本方式查看主题 - 金字塔客服中心 - 专业程序化交易软件提供商 (http://weistock.com/bbs/index.asp) -- 金字塔软件问题提交 (http://weistock.com/bbs/list.asp?boardid=2) ---- [求助]反手操作的问题 (http://weistock.com/bbs/dispbbs.asp?boardid=2&id=2774) |
-- 作者:ch3coohqb -- 发布时间:2010/9/9 18:21:32 -- [求助]反手操作的问题 if 金叉 then if 死叉 then
我改成
sellshort(金叉 and holding<0 and ccm,0); buy(金叉 and holding<=0,1); sell(死叉 and holding>0 and cmc,0);
如果有不同~原因是什么?
======================== 写法1 sellshort(金叉 and holding<0 and ccm,0); //语句1 buy(金叉 and holding<=0,1);//语句3 sell(死叉 and holding>0 and cmc,0);//语句4
写法2 sellshort(金叉 and holding<0 and ccm,0),ORDERQUEUE; buy(金叉 and holding<=0,1),ORDERQUEUE; sell(死叉 and holding>0 and cmc,0),ORDERQUEUE;
写法1跟写法2有啥不同? 难道不用ORDERQUEUE的话 交易指令的执行就不是按照语句1 语句2 语句3...的顺序执行的吗? |