想问一下海龟系统代码中,下面计算的M,N,存在未来函数问题吗?是否要用REF(,1)呢?
m:ma(tr,atrcyc),linethick1;
if Barpos>=21 then
BEGIN
If Barpos=21 then
N:=M;
If DayCount=5 or Barpos=21 then
begin{5天调整N值}
N:=(19*N+TR)/20;{计算N值}
DayCount:=0;
end
daycount:=daycount+1;
END
variable:n=0;
variable:datacount=0;
这个会有影响?