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
|