TICKLIST
gts
Pushes onto the stack the list of ticks of a Geo Time Series™ or encoder. The ticks appear in the order in which they are found.
TICKLIST
is consistent with VALUES
.
If a list of Geo Time Series™ is given, the result is a list of list of ticks as if the TICKLIST function was applied to each Geo Time Series™ separately.
TICKLIST is available since version 1.0.0.
See also
Signatures
Examples
NEWGTS
400 NaN NaN NaN 7 ADDVALUE
100 NaN NaN NaN 0 ADDVALUE // not sorted
700 NaN NaN NaN 42 ADDVALUE // duplicate
700 NaN NaN NaN 42 ADDVALUE // duplicate
500 NaN NaN NaN 6 ADDVALUE
700 NaN NaN NaN 42 ADDVALUE // duplicate
800 NaN NaN NaN 4 ADDVALUE
'gts' STORE
{
'VALUES' $gts VALUES
'TICKLIST' $gts TICKLIST
'TICKS' $gts TICKS // Warning : TICKS sorts and deduplicates !
}