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;
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 吧?
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è)條件就正常了
這也太怪了吧,為啥呢