条件如下:
1,9点35分后才开仓,当价格高于前面30根的最高价时开多单,开仓后如果创出当日新高则持有到价格低于前30根最低价;开仓后不创新高,则持仓到价格跌破当日最低点;平仓后马上反手;反手后平仓条件一样;
2,空单条件和多单相反;
3,2点58分平仓;
4,1分钟周期就可
谢谢版主好人一个,找时间请你吃饭喝酒泡MM
不知道对否 ,可参考一下我写的
if not(time>=093500) then exit;
exittime:=time>=025800;
n:=barslast(date<>ref(date,1));
dayhigh:=ref(hhv(h,n),1);
daylow:=ref(llv(l,n),1);
h30:=ref(hhv(h,30),1);
l30:=ref(llv(l,30),1);
if time>093500 and h>=h30 then buy(holding=0,1,market);
if time>093500 and l<=l30 then buyshort(holding=0,1,market);
if holding>0 then begin
if enterprice>dayhigh and close<=l30 or enterprice<daylow then sell(1,holding,market);
if enterprice<daylow then buyshort(1,1,market);
end;
if holding<0 then begin
if enterprice<daylow and close>=h30 or enterprice>dayhigh then sellshort(1,holding,market);
if enterprice<dayhigh then buy(1,1,market);
end
if time>=145800 and time<=150000 then begin
sellshort(holding<0,0,close);
sell(holding>0,0,close);
end
tonybig哥 你帮我写的问题怎么那么多啊 还有白点
不过还是谢谢你了,赞一个
汗。今天忙
上面的的第一句不能这样用,会导致hhv(h,nn)出错
其他部分不符合逻辑,是开仓后最高价触及日内最高点,才把离场位置为30周期低点,否则,是以日内最低点离场并反手
晚点写
variable:hl=0;
cond:=date<>ref(date,1);
nn:=barslast(cond)+1;
hi:=ref(hhv(h,nn),1);
lo:=ref(llv(l,nn),1);
hi30:=ref(hhv(h,30),1);
lo30:=ref(llv(l,30),1);
entertime:=time>093500 and time<145800;
if holding>0 and (l<lo or (l<lo30 and hl<0)) then begin//hl<0代表的开仓后的最高价达到日内最高点
sell(1,1,market);
buyshort(entertime,1,market);
hl:=l;
goto skip@; //这里要跳转一下,防止当根K线开空立即被下面的平仓语句平了
end
if holding<0 and (h>hi or (h>hi30 and hl<0)) then begin
sellshort(1,1,market);
buy(entertime,1,market);
hl:=h;
end
if holding=0 and entertime and h>hi30 then begin
buy(1,1,market);
hl:=h;//记录开仓后的最高价
end
if holding=0 and entertime and l<lo30 then begin
buyshort(1,1,market);
hl:=l;
end
skip@;
if holding>0 and h>=abs(hl) then begin//因为用了hl的正负号来记录信息,所以需用abs(hl)
hl:=h;//记录抬升的最高价
if hl>hi then hl:=-hl;//如果触碰日内最高点,则把hl赋值为负值
end
if holding<0 and l<=abs(hl) then begin
hl:=l;
if hl<lo then hl:=-hl;
end
if time>=145800 then begin
sell(1,1,market);
sellshort(1,1,market);
end
if holding>0 and h>=abs(hl) then begin//因为用了hl的正负号来记录信息,所以需用abs(hl)
hl:=h;//记录抬升的最高价
if hl>hi then hl:=-hl;//如果触碰日内最高点,则把hl赋值为负值
end
if holding<0 and l<=abs(hl) then begin
hl:=l;
if hl<lo then hl:=-hl;
end
这两句话不是太理解, 为什么要变成-hl, 则把hl赋值为负值
麻烦讲一下。
只是为了用一个全局变量既:记录新高,
又标识:开仓后是否创出当日新高