如果:一天前的开盘价>一天前的收盘价,两天前的最高价<一天前得最高价,
则开盘价买入,收盘价平仓
如果:一天前的开盘价<一天前的收盘价,两天前的最高价<一天前得最高价,
则开盘价卖出,收盘价平仓
问下两个条件的关联是什么?and还是or?
就以and为例来说明吧
首先建一个名字为YYY的公式,公式内容如下:
r1:ref(h,1);
r2:ref(h,2);
rc:ref(c,1);
ro:ref(o,1);
然后再建立一个公式,名字随便起,公式内容如下
zuoshou:stkindi('','YYY.rc',0,6);
zuokai:stkindi('','YYY.ro',0,6);
ertianzuigao:stkindi('','YYY.R2',0,6);
zuotianzuigao:stkindi('','YYY.R1',0,6);
exitshort:zuokai<zuoshou and ertianzuigao<zuotianzuigao,tfilter;
enterlong:zuokai>zuoshou and ertianzuigao<zuotianzuigao,tfilter;
exitlong:zuokai>zuoshou and ertianzuigao<zuotianzuigao,tfilter;
entershort:zuokai<zuoshou and ertianzuigao<zuotianzuigao,tfilter;
这样编太复杂了吧
你要实现这样的功能就得有这么多的代码,这个并不复杂!
编辑掉