老师们好,请问下面的这个多损单子怎么表达语句才能正常
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);
以上是多损和空损的程序,我测试多次都有问题,不知道怎么改了,麻烦大神帮助改善。
第一句要改下
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编辑过]