Most of the Norgate Fundamental data is reflected in the Amibroker Information screen. Some of the data is not.
I have an application where I need to access data that is not in the Amibroker Info screen by using SetForeign() in a loop.
Example:
for( i = 0; ( sym = StrExtract( GICS_SourceList, i ) ) != ""; i++ )
{
SetForeign(sym);
CF = GetFnData("OperatingCashFlow"); (Value shown is 0)
RestorePriceArrays();
}
I can access Norgate data directly using Norgate functions but the only data accessible is for the selected symbol only, not the symbol via SetForeign().
Tomasz
Any plans to include the Norgate missing data (Cash Flow spaces that already exist on the Information screen)
or a workaround
Ara