后臺(tái)編寫問(wèn)題請(qǐng)教 [金字塔]
- 咨詢內(nèi)容:
RSV:= (CLOSE-LLV(LOW,N1))/(HHV(HIGH,N1)-LLV(LOW,N1))*100;
K:=SMA(RSV,M1,1);
D:=SMA(K,M2,1);
J:=3*K-2*D;
cond1:=CROSS(K,D);//開(kāi)多條件
cond2:=CROSS(D,K);//開(kāi)空條件tbuy(time=090100,100,lmt,o,0);
tbuyshort(time=090100,100,lmt,o,0);tsell(cond1,10,mkt);
tsellshort(cond2,10,mkt);1)若其中有單子沒(méi)有成交,撤單并且以市價(jià)平掉這筆單子。
2)當(dāng)持倉(cāng)為0時(shí),在繼續(xù)重復(fù)第一次開(kāi)多開(kāi)空同等數(shù)量。繼續(xù)執(zhí)行程序。
這樣編寫對(duì)否?
還有后臺(tái)使用ORDERQUEUE可以否?
if TISREMAIN(0)>0 then begin
tsell(TCANCEL(1,0),10,mkt);
tsellshort(TCANCEL(1,0),10,mkt);
End
if THOLDING2=0 then begin
tbuy(CURRENTTIME,100,lmt,O,0);
tbuyshort(CURRENTTIME,100,lmt,O,0);
End
tsell(cond1,10,mkt);
tsellshort(cond2,10,mkt);if CURRENTTIME=145800 then
tsell(1,0,mkt);
tsellshort(1,0,mkt); - 金字塔客服:
若編寫錯(cuò)誤,應(yīng)該如何編寫請(qǐng)賜教,謝謝
- 用戶回復(fù):
1.單子沒(méi)成交那你應(yīng)該是撤單而不是平倉(cāng)啊,你沒(méi)成交哪里能夠平單子
if tisremain(0)>0 then
tcancel(1,0);
end
2. orderqueue可以用在后臺(tái)
3. 時(shí)間判斷時(shí),用time可以用=判斷,可以time=090100;
但是用currenttime,你需要用一個(gè)時(shí)間段來(lái)控制,比如這樣 currenttime>145800 and currenttime<=145900
- 網(wǎng)友回復(fù):
if tisremain(0)>0 then begin tcancel(0,0); tsell(1,10,mkt); tsellshort(1,10,mkt);end if tisremain(0)>0 then begin tcancel(0,0); tsell(1,10,mkt); tsellshort(1,10,mkt);end
if THOLDING2=0 and currenttime>144000 then begintbuy(1,100,lmt,O,0);tbuyshort(1,100,lmt,O,0);Endtsell(cond1,10,mkt);tsellshort(cond2,10,mkt);
if CURRENTTIME=145800 then
tsell(1,0,mkt);
tsellshort(1,0,mkt);這樣可以了嗎? 老大
- 網(wǎng)友回復(fù): 這樣可以了嗎?
有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 1145508240 進(jìn)行 有償 編寫!(不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒(méi)有相關(guān)內(nèi)容