請(qǐng)教平倉(cāng)代碼的問(wèn)題 [金字塔]
- 咨詢(xún)內(nèi)容:
variable:maxprofit=0;
variable:win=0;
variable:win2=0;IF holding>0 and enterbars>0 THEN BEGIN
win:=high-enterprice;
IF win>maxprofit THEN maxprofit:=win;
win2:=maxprofit-win;
END
盈利大于50,小于100時(shí),回撤30%平多 win2>=0.3*maxprofit then sell();盈利大于50,小于100,這個(gè)條件描述是用 maxprofit>50 and maxprofit<100,還是 win>50 AND win<100 呢?
我之前用的maxprofit,但空頭(enterprice-L)止盈結(jié)果不對(duì),用win反而對(duì)了,但是多頭止盈又不正常了。
- 金字塔客服:
maxprofit_duo:=hhv(h-enterprice,enterbars+1);
maxprofit_kong:=llv(enterprice-l,enterbars+1);
if maxprofit_duo>100 and maxprofit_duo<50 and holding>0 and c-enterpcie<=0.3*maxprofit_duo then sell;
if maxprofit_kong>100 and maxprofit_kong<50 and holding<0 and enterpcie-c<=0.3*maxprofit_kong then sell;
- 用戶(hù)回復(fù):
以下是引用jinzhe在2013/12/6 9:41:27的發(fā)言:
maxprofit_duo:=hhv(h-enterprice,enterbars+1);
maxprofit_kong:=llv(enterprice-l,enterbars+1);
if maxprofit_duo>100 and maxprofit_duo<50 and holding>0 and c-enterpcie<=0.3*maxprofit_duo then sell;
if maxprofit_kong>100 and maxprofit_kong<50 and holding<0 and enterpcie-c<=0.3*maxprofit_kong then sell;
c-enterpcie<=0.3*maxprofit_duo then sell
回撤超過(guò)30%,應(yīng)該是 c-enterpcie <= (1-0.3)*maxprofit_duo 吧?
- 網(wǎng)友回復(fù):
這個(gè)數(shù)學(xué)上的定義,用戶(hù)自己斟酌吧,我主要給出思路
- 網(wǎng)友回復(fù):
以下是引用jinzhe在2013/12/6 13:05:32的發(fā)言:
if maxprofit_kong>100 and maxprofit_kong<50 and holding<0 and enterpcie-c<=0.3*maxprofit_kong then sell;
多頭沒(méi)問(wèn)題,空頭仍然不對(duì),不出信號(hào),空頭如果去掉“maxprofit_kong>100 and maxprofit_kong<50” 這個(gè)條件就正常了
這也太怪了吧,為啥呢
有思路,想編寫(xiě)各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 1145508240 進(jìn)行 有償 編寫(xiě)!(不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒(méi)有相關(guān)內(nèi)容