Ok
Use Exploration
in AA (and apply to CURRENT SYMBOL). Note all quotes will be aligned to
the Current symbol selected and quotes retrieved by FOREIGN function in
the code will pad data to the main symbol. (Make sure there are no
data-holes in the Current ticker). And add the Tickersymbols to Group
1, (or any other location in the Database that you want to extract
from; or change the location to a Watchlist or in argument in line 3 of
the code).
SetOption("nodefaultcolumns", True);
AddColumn( DateTime(), "date/time", formatDateTime);
symlist = CategoryGetSymbols( categoryGroup, 1 );
Filter
= 1;
for(
i = 0; ( sym
= StrExtract(
symlist, i ) ) != ""; i++ )
{
AddColumn(
Foreign(
sym, "C" ), sym);
}
(The code is not made by me but by the Support.)
best regards