-- 作者:qq代人发帖
-- 发布时间:2016/4/22 14:22:45
--
variable:n=0;
if 平多条件 and holding>0 then begin
sell(1,0,marketr);
if numprofit(1)>0 then n:=n+1;
if numprofit(1)<0 then n:=0;
end
if 平空条件 and holding<0 then begin
sellshort(1,0,marketr);
if numprofit(1)>0 then n:=n+1 ;
if numprofit(1)<0 then n:=0;
end
n为连赢次数
[此贴子已经被作者于2016/4/22 14:22:59编辑过]
|