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

Re: GlobalServer SDK



PureBytes Links

Trading Reference Links

Each one of your systems, indicators, paintbars,etc is processed
individually not simultaneously. Based on your limited description
of what you are attempting to do, I assume it involves passing
global variables between code modules. If so, upon completion
of processing any one module, the only value left in the GV buffer
is the last value calculated. All values processed previously have
passed out of the buffer and are not saved. When the next module
processed looks for the values, it only finds the last one processed.
  The solution is to send the values to file and have the module,
that is currently processing, open the file and retrieve the appropriate
value.

dbs

p.s. I do not use TS2k but I'm assuming this is the situation.

John Menke wrote:

> I'm trying to use one of the VB examples in the SDK and use the following
> query in the request box:
>
> ADVISE 0,1 FROM SYMBOL_DATA WHERE 31="MSFT" AND 276 = "10/1/00" AND 228 =
> "10/10/99"
>
> This only returns one day of data into the grid.....  Is this because the
> GlobalServer is only returning one day of data  or a problem with the VB
> example not processing the data correctly?