請問老師關(guān)于日內(nèi)多次突破交易的問題 [MC]
-
MC用戶求助:
關(guān)于swinghigh函數(shù)的用法,您可以先看一下帖子http://forums.icetech.com.cn/for ... &extra=page%3D1,在學(xué)習(xí)這個帖子的過程中遇到的問題可以直接在該帖子下方回帖。
?
另外,關(guān)于您的這個策略需求,我簡單在您的代碼中加了幾行代碼,如下:
input:btime(0930),etime(1445);
var:thigh(0),tlow(0),mp(0);
if date<>date[1] then begin
? ? mp=0;
? ? thigh=0;
? ? tlow=0;
? ?end;
if time=btime then begin
? ? thigh=highd(0);
? ? tlow=lowd(0);
? ? end;
mp=marketposition;
if time>btime and time<etime then begin
? ? if mp=0 and close cross above thigh then begin
? ? ? ?buy ("b1")next bar at thigh stop;
? ? ? ? end;
? ? if mp=1 then sell("sp") next bar at tlow stop;
?
? ? if mp=0 and close cross under tlow then begin
? ? ? ? sellshort ("s1")next bar at tlow stop;
? ? ? ? end;
? ? if mp=-1 then buytocover("bp") next bar at thigh stop;
//增加
? ? if mp=0 and mp[1]<>0 then begin
? ? ? ? ? ? thigh=highd(0);
? ? ? ? ? ? tlow=lowd(0);
? ? end;
//增加
{這個地方,是一個即時的代碼,也就是當(dāng)前一根bar上持倉,而當(dāng)根bar未持倉,那么重新賦值thigh和tlow,后續(xù)的進場會根據(jù)這兩個新的值進行進場和出場了}
end;
?
-
MC回復(fù)討論一:
關(guān)于swinghigh函數(shù)的用法,您可以先看一下帖子http://forums.icetech.com.cn/for ... &extra=page%3D1,在學(xué)習(xí)這個帖子的過程中遇到的問題可以直接在該帖子下方回帖。
?
另外,關(guān)于您的這個策略需求,我簡單在您的代碼中加了幾行代碼,如下:
input:btime(0930),etime(1445);
var:thigh(0),tlow(0),mp(0);
if date<>date[1] then begin
? ? mp=0;
? ? thigh=0;
? ? tlow=0;
? ?end;
if time=btime then begin
? ? thigh=highd(0);
? ? tlow=lowd(0);
? ? end;
mp=marketposition;
if time>btime and time<etime then begin
? ? if mp=0 and close cross above thigh then begin
? ? ? ?buy ("b1")next bar at thigh stop;
? ? ? ? end;
? ? if mp=1 then sell("sp") next bar at tlow stop;
?
? ? if mp=0 and close cross under tlow then begin
? ? ? ? sellshort ("s1")next bar at tlow stop;
? ? ? ? end;
? ? if mp=-1 then buytocover("bp") next bar at thigh stop;
//增加
? ? if mp=0 and mp[1]<>0 then begin
? ? ? ? ? ? thigh=highd(0);
? ? ? ? ? ? tlow=lowd(0);
? ? end;
//增加
{這個地方,是一個即時的代碼,也就是當(dāng)前一根bar上持倉,而當(dāng)根bar未持倉,那么重新賦值thigh和tlow,后續(xù)的進場會根據(jù)這兩個新的值進行進場和出場了}
end;
有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 511411198 進行 有償 編寫!(不貴!點擊查看價格!)
相關(guān)文章
-
沒有相關(guān)內(nèi)容