le:=rand(2)=1;
lx:=abs(enterprice-close)>=2*mindiff;
se:=rand(2)=2;
sx:=abs(enterprice-close)>=2*mindiff;
buy(holding=0 and le,1,limitr,close);
sell(holding>0 and lx,holding,limitr,close);
buyshort(holding=0 and se,1,limitr,close);
sellshort(holding<0 and sx,holding,limitr,close);
资产:asset,noaxis,colorred;
这段随机开仓,2跳止盈止损的策略,应用在Tick周期,为什么有大量的平仓都在当前bar,如图?
应用在其他周期也一样,有很多在当前bar平仓
平仓策略是:abs(enterprice-close)>=2*mindiff,怎么可能在同一个bar上满足这个条件?
这种简单的问题,使用金字塔的调试技巧很容易就能查出问题的
金字塔公式编写调试
http://www.weistock.com/bbs/dispbbs.asp?boardid=4&id=1246&page=1&star=1
这种简单的问题,使用金字塔的调试技巧很容易就能查出问题的
金字塔公式编写调试
http://www.weistock.com/bbs/dispbbs.asp?boardid=4&id=1246&page=1&star=1
log.txt:
所有的enterprice都等于26395,什么原因?
图表交易的公式调试请用LINETHICK0控制符,请按照教程说的方法调试,不要自己乱想花样,再说你完全扭曲了DEBUFILE2函数的用法
图表交易的公式调试请用LINETHICK0控制符,请按照教程说的方法调试,不要自己乱想花样,再说你完全扭曲了DEBUFILE2函数的用法
明显不对呀,enterprice-close=0,abs(0)=0,怎么可能大于2*mindiff?
le:=rand(2)=1;
lx:abs(enterprice-close)>=2*mindiff,linethick0;
ddd:mindiff,linethick0;
se:=rand(2)=2;
sx:abs(enterprice-close)>=2*mindiff,linethick0;
aa:enterprice,linethick0;
bb:close,linethick0;
buy(holding=0 and le,1,limitr,close);
sell(holding>0 and lx,holding,limitr,close);
buyshort(holding=0 and se,1,limitr,close);
sellshort(holding<0 and sx,holding,limitr,close);
资产:asset,noaxis,colorred;
请你仔细检查AA,BB变量的变化
le:=rand(2)=1;
lx:abs(enterprice-close)>=2*mindiff,linethick0;
ddd:mindiff,linethick0;
se:=rand(2)=2;
sx:abs(enterprice-close)>=2*mindiff,linethick0;
aa:enterprice,linethick0;
bb:close,linethick0;
buy(holding=0 and le,1,limitr,close);
sell(holding>0 and lx,holding,limitr,close);
buyshort(holding=0 and se,1,limitr,close);
sellshort(holding<0 and sx,holding,limitr,close);
资产:asset,noaxis,colorred;
请你仔细检查AA,BB变量的变化
明白aa和bb的位置应该写在交易函数之前。如图,enterprice和close倒是对的上了,但是问题是明明在同一个Tick上开平仓的怎么会开仓的enterprice和平仓的close不一样呢?