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

Antw: Re: Advance-Decline data



PureBytes Links

Trading Reference Links

Bob,

I just checked it, and you are right, it works in TS6. Now I wonder
why the help does not mention that. Would have saved me a lot of work.

Thanks for the info.

Best regards,

Franz

>>> Bob Fulks <bfulks@xxxxxxxxxxxx> 21.03.2002 20:55:01 >>>
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