用于3分钟周期
开多条件:9点30之后,14点30之前,收盘价>前30分钟最高价,开多3手
开空条件:9点30之后,14点30之前,收盘价<前30分钟最低价,开空3手
多头止损:开仓价-10,平仓3手;
空头止损:开仓价+10,平仓3手;
多头止盈:1、开仓价+20后,平仓1手。同时启动移动止盈,当开仓后的最高价回撤20点平仓2手
2、如果没有碰到移动止盈位,价格继续上行,在开仓价+40后,再平仓1手,移动止盈位还是开仓后最高价回撤20点平仓
3、当价格达到开仓价+60后,平掉最后1手
4、14点50分后平掉所有仓位
空头止盈:1、开仓价-20后,平仓1手。同时启动移动止盈,当开仓后的最低价回撤20点后平仓2手
2、如果没有碰到移动止盈位,价格继续下行,在开仓价-40后,再平仓1手,移动止盈位还是开仓后最低价回撤20点平仓
3、当价格达到开仓价-60后,平掉最后1手
4、14点50分后平掉所有仓位
分批止盈的不太会编,请帮我写下,谢谢
刚刚没写清楚,只有第一次满足条件的时候才开仓
一天只开一次仓
variable:hl=0,kcj=0,nums=0;
entertime:=time>93000 and time<143000;
exittime:=time>=145000;
hi30:=ref(hhv(h,30),1);
lo30:=ref(llv(l,30),1);
if exittime then begin
sell(1,0,limitr,o);
sellshort(1,0,limitr,o);
nums:=0;
end
if holding=0 and nums=0 and ref(c>hi30,1) then begin
buy(1,3,limitr,o);
kcj:=o;
zs:=o-10;
hl:=h;//记录开多后的最高点
nums:=1;
end
if holding=0 and nums=0 and ref(c<lo30,1) then begin
buyshort(1,3,limitr,o);
kcj:=o;
zs:=o+10;
hl:=l;//记录开空后的最低点
nums:=1;
end
if holding>0 and l<zs then sell(1,0,limitr,zs-2*mindiff);
if holding<0 and h>zs then sellshort(1,0,limitr,zs+2*mindiff);
if holding>0 and h>=hl then begin
hl:=h;
if hl>kcj+20 then begin
zs:=hl-20;
sell(holding=3,1,limitr,kcj+20);
sell(holding=2 and hl>kcj+40,1,limitr,kcj+40);
sell(holding=1 and hl>kcj+60,1,limitr,kcj+60);
end
end
if holding<0 and l<=hl then begin
hl:=l;
if hl<kcj-20 then begin
zs:=hl+20;
sellshort(holding=-3,1,limitr,kcj-20);
sellshort(holding=-2 and hl<kcj-40,1,limitr,kcj-40);
sellshort(holding=-1 and hl<kcj-60,1,limitr,kcj-60);
end
end
谢谢火哥。。。
原先一直在考虑全局变量来做分批止盈的
原来还可以用这个思路
给力啊!!
火哥。。。
if holding=0 and nums=0 and ref(c<lo30,1) then begin
buyshort(1,3,limitr,o);
kcj:=o;
zs:=o+10;
hl:=l;//记录开空后的最低点
nums:=1;
end
这一段中的
kcj:=o;
zs:=o+10;是记录开仓价和止损价吗?
好像o不是一个固定价
可不可以用ENTERPRICE,请指点!