求教如何表達:
日內(nèi)連虧N次之后,平倉離場,當日不再交易;次日重新遵循原系統(tǒng)開始。
varaible:n=0;
if numprofit(1)<0 and numprofit(2)<0 and ref(平多條件,1) and ref(holding>0,1) and holding<=0 then begin
n:=N+1;
end
if numprofit(1)<0 and numprofit(2)<0 and ref(平空條件,1) and ref(holding<0,1) and holding>=0 then begin
n:=N+1;
end
if time=closetime(0) then n:=0;
if n>=既定的連虧次數(shù) then exit;