以文本方式查看主题 - 金字塔客服中心 - 专业程序化交易软件提供商 (http://222.73.7.161/bbs/index.asp) -- 公式模型编写问题提交 (http://222.73.7.161/bbs/list.asp?boardid=4) ---- 语句表达方法 (http://222.73.7.161/bbs/dispbbs.asp?boardid=4&id=183573) |
-- 作者:李大爷 -- 发布时间:2020/12/23 9:10:23 -- 语句表达方法 老师们好,请问下面的这个多损单子怎么表达语句才能正常 1、if HOLDING>0 AND C<=enterprice-S*MINDIFF and(c<ma12,4)=4 then sell(holding>0,holding,market) then begin;//多损 sell(1,1,MARKETR); 2、if HOLDING<0 AND C>=enterprice+S*MINDIFF then begin//空损 if count(c>ma12,4)=4 then sellshort(holding<0,holding,market); sellshort(1,1,MARKETR); 以上是多损和空损的程序,我测试多次都有问题,不知道怎么改了,麻烦大神帮助改善。
|
-- 作者:FireScript -- 发布时间:2020/12/23 9:29:49 -- 第一句要改下 if HOLDING>0 AND C<=enterprice-S*MINDIFF and count(c<ma12,4)=4 then sell(holding>0,holding,market); 语法上要先通过编译啊。你应该是没有完整看过我们的策略编写教程吧。 “ 2、if HOLDING<0 AND C>=enterprice+S*MINDIFF then begin//空损 if count(c>ma12,4)=4 then sellshort(holding<0,holding,market); sellshort(1,1,MARKETR); ”这一句你是没贴完还是怎么的,完全就是残缺的啊,不知道是要做啥的。 [此贴子已经被作者于2020/12/23 9:30:16编辑过]
|