[求助]能把這個(gè)模型改成一分鐘用的嗎 [金字塔]
- 咨詢內(nèi)容:
能把這個(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)
endif holding=0 and entertime and short then begin
buyshort(1,1,limitr,c);
zs:=gbg;//調(diào)用顧比倒數(shù)線做為止損
maxhl:=L;
endif holding<0 and l<maxhl then begin //創(chuàng)新低后,重新定位離場(chǎng)位,以實(shí)現(xiàn)浮動(dòng)止損
maxhl:=l;
zs:=gbg;
endif holding>0 and h>maxhl then begin //創(chuàng)新高后,重新定位離場(chǎng)位,以實(shí)現(xiàn)浮動(dòng)止損
zs:=gbd;
maxhl:=h;
end - 金字塔客服:
圖表交易系統(tǒng),你放在1分鐘K線上,它就是一分鐘的模型了,這需要改什么??
- 用戶回復(fù):
發(fā)錯(cuò)了應(yīng)該是這個(gè)
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
endif Condition1 then
begin
if holding=0 then
BEGIN
BUYSHORT(1,lots,limitr,(Open-i_offset));
endif 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;
有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 1145508240 進(jìn)行 有償 編寫!(不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒有相關(guān)內(nèi)容