换个浏览器,重新问 [金字塔]
- 咨询内容:
初学金字塔,请各位老师挑错,日内,五分钟线,当前价格与之前两个不同周期的开盘价进行比较<!--EndFragment-->,否则卖出,并添加止损条件。
input:t(10,1,100,5),d(5);
一倍周期开盘价:=ref(open,t),noaxis,nodraw;
两倍周期开盘价:=ref(open,2*t),noaxis,nodraw;
//交易条件
开多条件:=close>ref(open,t) and close>ref(open,2*t) and time<185500;
平多条件:=time=185500 or l<enterprice-d*mindiff;
开空条件:=close<ref(open,t) and close<ref(open,2*t)and time<185500;
平空条件:=time=185500 or h>enterprice+d*mindiff;;
//交易系统
sellshort(平空条件 and holding<0,holding,market);
buy(开多条件 and holding=0,1,market);
sell(平多条件 and holding>0,holding,market);
buyshort(开空条件 and holding=0,1,market);
恳请各位好心人帮忙看看,不胜感激,
其中把止损离场和收盘前离场放在一起都用market,是不是可以?而且在图表中发现有的K线上有两个信号既平空又开多,看着很不舒服,该如何改进
- 金字塔客服:
除了前面的close改h,close改l的
还要这样改
- 用户回复:
改完了,信号全没了,
- 网友回复:
input:t(10,1,100,5),d(5);
variable:n=0;
一倍周期开盘价:=ref(open,t),noaxis,nodraw;
两倍周期开盘价:=ref(open,2*t),noaxis,nodraw;
//交易条件
开多条件:=close>ref(open,t) and close>ref(open,2*t) and time<185500;
平多条件:=time=185500 or l<enterprice-d*mindiff;
开空条件:=close<ref(open,t) and close<ref(open,2*t)and time<185500;
平空条件:=time=185500 or h>enterprice+d*mindiff;;
//交易系统
if n=0 and 开多条件 and holding=0 then begin
buy(1,1,market);
n:=1;
end
if n=0 and 开空条件 and holding=0 then begin
buyshort(1,1,market);
n:=1;
end
sellshort(平空条件 and holding<0,holding,market);
buy(开多条件 and holding=0 and exitbars>0 and n=1,1,market);
sell(平多条件 and holding>0 ,holding,market);
buyshort(开空条件 and holding=0 and exitbars>0 and n=1,1,market);
- 网友回复: 谢谢啦,帮了大忙,赞哦~
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 1145508240 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容