[原創(chuàng)]輪詢交易,信號(hào)反復(fù),導(dǎo)致多次開平。我參考了個(gè)程序,看看能否行? [金字塔]
- 咨詢內(nèi)容:
WARNING_DISABLE:4;
ss:=1; //手?jǐn)?shù)
extgbdataset('t1_position',0);
//0表示沒有倉位,1表示持有多頭, -1表示持有空頭
extgbdataset('t1_holding',0);
//0表示沒有倉位,>0表示持有多頭, <0表示持有空頭
extgbdataset('t1_enterbarpos',0);//記錄其開倉的K線maa:ema(c,10);
bpk:=cross(c,maa);
spk:=cross(maa ,c);
//非最后一根K線退出
if not(islastbar) or workmode<>1 then exit;//如果當(dāng)是最后一根k線,執(zhí)行
IF islastbar and time<151000 then begin// 如果最后一根k線發(fā)生過開倉信號(hào),則那一根k線不再交易
if extgbdata('t1_enterbarpos') = barpos then begin
goto continueline ;
end
//沒有持倉狀態(tài)
if extgbdata('t1_position')=0 and extgbdata('t1_holding')=0 then begin
if bpk then begin
buy(1,ss,c);
extgbdataset('t1_position',1);
extgbdataset('t1_holding',ss);
extgbdataset('t1_enterbarpos',barpos);
goto continueline ;
endif spk then begin
buyshort(1,ss,c);
extgbdataset('t1_position',-1);//程序化交易 www.kzuj.com.cn
extgbdataset('t1_holding',-ss);
extgbdataset('t1_enterbarpos',barpos);
goto continueline ;
end
end//沒有持倉狀態(tài)
//持有倉位狀態(tài)
//持有空頭
if bpk and extgbdata('t1_position')=-1 and extgbdata('t1_holding')<0 then beginsellshort(1,ss,c);
buy(1,ss,c);
extgbdataset('t1_position',1);
extgbdataset('t1_holding',ss);
extgbdataset('t1_enterbarpos',barpos);
goto continueline ;
end
//持有多頭
if spk and extgbdata('t1_position')=1 and extgbdata('t1_holding')>0 then beginsell(1,ss,c);
buyshort(1,ss,c);
extgbdataset('t1_position',-1);
extgbdataset('t1_holding',-ss);
extgbdataset('t1_enterbarpos',barpos);
goto continueline ;
end
END//if ISLASTBARif time>=151300 then begin
sell(extgbdata('t1_holding')>0,ss,c);
sellshort(extgbdata('t1_holding')<0,ss,c);
extgbdataset('t1_position',0);
extgbdataset('t1_holding',0);
endcontinueline@ 資產(chǎn):tasset,linethick0;
position:=extgbdata('t1_position');
t1holding:=extgbdata('t1_holding');
debugfile('d:\debug\803555.txt','position=%.0f' ,position) ;
debugfile('d:\debug\803555.txt','t1holding=%.0f' ,t1holding) ;以上代碼能在金子塔里測(cè)試嗎?我用了,不能出信號(hào)。
- 金字塔客服: 要學(xué)會(huì)自己測(cè)試+調(diào)試
有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 1145508240 進(jìn)行 有償 編寫!(不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒有相關(guān)內(nèi)容