[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ChandeTrend Score



PureBytes Links

Trading Reference Links

> As written for 2000i,

I doubt this works on 2000i.  It sure doesn't work on TS4.

>  if c-c[i]>0 then score=score+1

That should be "if c-c[counter]>0".

> plot1(score);
> End;

TS4 requires a label on the plot statement:

  plot1(score, "Score");

Also, the last "End;" shouldn't be there.

Gary