1,如果开盘第一根K线,是阳线,下一个周期的开盘价就做多,如果是阴线,下个周期开盘价就阴线,下一个周期的开盘价就做空;
2,如果,第2根K线是做多的话,把上个周期的最高价储存,和这个周期最高价比较储存更高的这个,当这个周期收盘价小于最高价20个点时就平多头开空头,不到的话就继续顺推下个周期,知道满足这个条件,一路储存最高价,只要差20个点就下个周期就平多头开空头
3,开空头后,当前这个周期的最低点也储存,当新的周期最低点和他比,储存最低的那个,当收盘价大于最低价20个点时就平空头开多头
4,第2个K线做空的话,反之
5,交易时间是9:05-14:55
请大侠们,帮我编编看,不胜感激
问题正在解决中
谢谢,大侠
仅供参考
variable:zuig=h,zuid=l;
zuig:=if(zuig>h,zuig,h);
zuid:=if(zuid<l,zuid,l);
hh:zuig;
ll:zuid;
m:mindiff,linethick0;
oo:=ref(o,1);
ll:=ref(l,1);
if ref(date,2)<>ref(date,1) then
begin
zuig:=h;
zuid:=l;
if oo<ll then buy(holding=0,1,limit,o);
if oo>ll then buyshort(holding=0,1,limit,o);
end
if time>090500 and time<145500 then
begin
if holding>0 and zuig-c>20*mindiff then
begin
sell(holding>0,0,market);
buyshort(holding=0,1,market);
end
if holding<0 and c-zuid>20*mindiff then
begin
sellshort(holding<0,0,market);
buy(holding=0,1.market);
end
end
if time>145500 then
begin
sell(holding>0,0,market);
sellshort(holding,0,0,market);
end
代码上,好像几个问题,第8行的代码 ll:=ref(l,1);
这个如果是用来判断第一根线是阳线还是阴线的话,ll也冲突了,我用cc:=ref(c,1);
那 if oo<ll then buy(holding=0,1,limit,o);
if oo>ll then buyshort(holding=0,1,limit,o);
就变成
if oo<cc then buy(holding=0,1,limit,o);
if oo>cc then buyshort(holding=0,1,limit,o);
主要是后面
if holding>0 and zuig-c>20*mindiff then
begin
sell(holding>0,0,market);
buyshort(holding=0,1,market);
end
if holding<0 and c-zuid>20*mindiff then
begin
sellshort(holding<0,0,market);
buy(holding=0,1.market);
end
之后,一天还没走完,需要新的最高点,和最低点跟收盘价来比较。收盘价和最近的最高和最低比较,满足20跳就交易
请大侠,在帮我考虑考虑