1:有没有平均亏损次数的指标?也就是从上一次盈利到下一次盈利中间的亏损次数的平均值!
2:连续盈亏分析里的“连续盈利手数”,“出现次数”是什么意思?如何计算出来的呢?
谢谢老师!
1、抱歉这个没有
2、就是出现连续盈利的次数,看交易明细,连续3个都是红色那就是连续盈利3次,出现次数顾名思义就是出现一次算一次
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为连赢次数