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

miscalculation of upticks/downticks


  • To: mr.bond@xxxxxx
  • Subject: miscalculation of upticks/downticks
  • From: Wayne Mathews <wayne@xxxxxxxxx>
  • Date: Mon, 7 Jun 1999 05:25:00 -0400 (EDT)

PureBytes Links

Trading Reference Links

Dave:

SP2 corrects the tics as they are in TS 4 except for 1 vol tics. These 1
vol tics can be corrected with code I posted on the list 20 Apr 1999
13:55 and is repeated below. BTW, only data that is imported or
collected RT after SP2 is installed will be corrected.


If c<c[1] then begin
        value1=1;
        plot1(downticks*2,"dn");  {or upticks, it does not matter }
end else begin			{as they are the same value in TS 2000}
        if value1=1 and c=c[1] then begin
        plot1(downticks*2, "dn");
end else begin
        value1=0;
        plot2(upticks*2,"up");
end;
end;

Wayne