能把這個(gè)模型改成股指一分鐘用的嗎?
variable:zs=c,maxhl=c;
//把以上顧比線的代碼復(fù)制一下
DISTL:=NEWLBARS(L,1);
DISTH:=NEWHBARS(H,1);
HI20:=REF(HHV(H,20),1);
LO20:=REF(LLV(L,20),1);
GBD1:=REF(L,DISTL);
GBD2:=REF(GBD1,DISTL);
GBD:=IF(GBD2>0,MAX(LLV(L,20),GBD2),LLV(L,20));
GBG1:=REF(H,DISTH);
GBG2:=REF(GBG1,DISTH);
GBG:=IF(GBG2>0,MIN(HHV(H,20),GBG2),HHV(H,20));
nn:=barslast(date<>ref(date,1))+1;
entertime:=nn>=m and time<=144500;
exittime:=time>=150900;
if holding>0 then 止損1:zs;
if holding<0 then 止損2:zs;
ma5:=ma(c,5);
ma30:=ma(c,30);
long:=cross(ma5,ma30);//多單進(jìn)場(chǎng)條件
short:=cross(ma30,ma5);//空單進(jìn)場(chǎng)條件
//下破移動(dòng)止損線后離場(chǎng)
if holding>0 and (c<zs or exittime) then sell(1,1,limitr,c);
if holding<0 and (c>zs or exittime) then sellshort(1,1,limitr,c);
//開倉語句
if holding=0 and entertime and long then begin
buy(1,1,limitr,c);
zs:=gbd;//調(diào)用顧比倒數(shù)線做為止損
maxhl:=h;//記錄當(dāng)時(shí)的高點(diǎn)
end
if holding=0 and entertime and short then begin
buyshort(1,1,limitr,c);
zs:=gbg;//調(diào)用顧比倒數(shù)線做為止損
maxhl:=L;
end
if holding<0 and l<maxhl then begin //創(chuàng)新低后,重新定位離場(chǎng)位,以實(shí)現(xiàn)浮動(dòng)止損
maxhl:=l;
zs:=gbg;
end
if holding>0 and h>maxhl then begin //創(chuàng)新高后,重新定位離場(chǎng)位,以實(shí)現(xiàn)浮動(dòng)止損
zs:=gbd;
maxhl:=h;
end
input:lots(1,0,100,1);
variable:N1=1;
i_offset:=N1*MINDIFF;
D1 := llv(REF(Low,2),22); //求1個(gè)月最低價(jià)
D2 := hhv(REF(High,2),22); //求1個(gè)月最高價(jià)
D3 := IntPart(0.008*ref(Open,1)); //昨日開盤價(jià)的0.8%
Condition1 := (REF(LOW,1)<=D1 OR REF(LOW,2)<=D1 OR REF(LOW,3)<=D1) And (REF(Open,1)-REF(CLOSE,1))>=D3; //判斷反轉(zhuǎn)日,由多轉(zhuǎn)空
Condition2 := (REF(HIGH,1)>=D2 OR REF(HIGH,2)<=D2 OR REF(HIGH,3)<=D2) And (REF(CLOSE,1)-REF(Open,1))>=D3; //判斷反轉(zhuǎn)日,由空轉(zhuǎn)多
if Condition2 then
begin
if holding=0 then
BEGIN
buy(1,lots,limitr,(Open+i_offset));
end
if holding<0 then
begin
SELLSHORT(1,0,limitr,(Open+i_offset));
buy(1,lots,limitr,(Open+i_offset));
end
end
if Condition1 then
begin
if holding=0 then
BEGIN
BUYSHORT(1,lots,limitr,(Open-i_offset));
end
if holding>0 then
begin
SELL(1,0,limitr,(Open-i_offset));
BUYSHORT(1,lots,limitr,(Open-i_offset));
end
end
//資產(chǎn):asset,noaxis,colorred,linethick2;