求助,比如这个克罗均线问题,交易按k线走完交易,交易周期是半小时。
当15:00这个时候,也就是当天最后一个bar走完,但有时候这个Bar可能会有信号(按程序设计是走完下,实际这个已经收盘,第二天又不会下,所以会出问题),想在收盘前几分钟,按信号下单,应该如何编写。
我附上克罗均线的代码,请高手改下。
runmode:0;
input:n1(4,1,100,1);
input:n2(9,1,100,1);
input:n3(18,1,100,1);
ma1:=ma(close,n1);
ma2:=ma(close,n2);
ma3:=ma(close,n3);
if holding=0 then begin
if close>ma1 and ma1>ma2 and ma2>ma3 then
buy(1,1,limitr,close);
end
if holding=0 then begin
if close<ma1 and ma1<ma2 and ma2<ma3 then
buyshort(1,1,limitr,close);
end
if holding>0 then begin
if ma1<ma2 then
sell(1,holding,limitr,close);
end
if holding<0 then begin
if ma1>ma2 then
sellshort(1,holding,limitr,close);
end
你可以使用低分钟周期 或是使用轮询模式
公式里没有限制时间,只是你使用的是半小时 走完一根K线模式
这种模式下,只会半个小时执行一次,不改变此模式,你是不可能在收盘前几分钟周期里下单的
改用1分钟周期,均线中的参数N用30*N代替。
改用5分钟周期,均线中的参数N用6*N代替。
改用10分钟周期,均线中的参数N用3*N代替。