统计60天内收阳换手率总和与收阴换手率总和公式。
v1:=if(c>o or (c=o and c>=ref(c,1)),vol,0);v2:=if(c<o or (c=o and c<ref(c,1)),vol,0);阳量:sum(v1,60);阴量:sum(v2,60);