| 
 PureBytes Links 
Trading Reference Links 
 | 
At 3:30 PM +0100 3/21/02, Franz Schildberger wrote:
>In TS6 the main problem is that you are limited to 50 data streams
>and the coding is not very straight forward as there is not way to
>access the datastreams using an index. Another problem is that you
>have to input all the 50 symbols by hand one by one.
In TS4.0 and TS2000i you can access the data streams by an index:
Array: Sym[30](0), Price[30](0);
for j = 1 to 30 begin
   Sym[j] = GetSymbolName of data(j);
   Price[j] = Close of data(j);
end;
Is this not possible in TS6?
Bob Fulks
 
 |