請(qǐng)問如下條件如何編寫? [金字塔]
-
咨詢內(nèi)容:
請(qǐng)問如下的 “ 第二次及第n次開倉條件 ” 的語句如何編寫?
tr1 : max(max((high-low),abs(ref(close,1)-high)),abs(ref(close,1)-low));
atr : ma(tr1,20); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //atr公式
?
ma20:ma(close,20); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //20日均線
?
a1:=0.01*valuewhen(barpos=1,asset); ?????????????//初始資金的1%
?
a2:=floor(a1/(2*atr)); ? ? ? ? ? ? ? ? ? ? ? ? //開倉手?jǐn)?shù)
?
a3:=ref(hhv(high,20),1); ? ? ? ? ? ? ? ? ? ? ? //20日高點(diǎn)
?
if holding=0 and close>a3 and close>ma20
then begin
buy(1,a2,marketr);
end ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //第一次開倉
?
a4:=enterprice-2*ref(atr,enterbars=1);
if holding=1 and low<=a4
then begin
sell(1,0,limitr,a4);
end ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //第一次開倉離場(chǎng)
?
//第二次及第n次開倉條件:如果隨后的收盤 > 上一次(即第 n-1 次)開倉的(enterprice+2*atr),則開倉(即第 n 次);
?
-
金字塔客服:
variable:bj=0;
tr1 : max(max((high-low),abs(ref(close,1)-high)),abs(ref(close,1)-low));
atr : ma(tr1,20); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //atr公式
ma20:ma(close,20); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //20日均線
a1:=0.01*valuewhen(barpos=1,asset); ?????????????//初始資金的1%
a2:=floor(a1/(2*atr)); ? ? ? ? ? ? ? ? ? ? ? ? //開倉手?jǐn)?shù)
a3:=ref(hhv(high,20),1); ? ? ? ? ? ? ? ? ? ? ? //20日高點(diǎn)
if holding=0 and close>a3 and close>ma20 and bj=0
then begin
buy(1,a2,marketr);
bj:=1;
end ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //第一次開倉
if holidng=0 and close>enterprice+2*atr and bj=1?
then begin
buy(1,a2,marketr);
end
a4:=enterprice-2*ref(atr,enterbars=1);
if holding=1 and low<=a4
then begin
sell(1,0,limitr,a4);
end ? ? ? ? ? ? ?
?
-
用戶回復(fù):
明白了,謝謝!
?
-
網(wǎng)友回復(fù):
你好,我看到你這行代碼:
if holding=0 and close>a3 and close>ma20 and bj=0
then begin
buy(1,a2,marketr);
bj:=1;
end ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //第一次開倉
if holding=0 and close>enterprice+2*atr and bj=1? then begin buy(1,a2,marketr); end
第二處的“ if holding=0 and close>enterprice+2*atr and bj=1? ”,這里有沒有寫錯(cuò)?還是“ if holding=0 ”嗎?不是“ if holding>0 ”
有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 511411198 進(jìn)行 有償 編寫!(不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒有相關(guān)內(nèi)容