Hi, i'm building a database with fundamental data from Esignal in Excel, so i can import it as csv to Amibroker. It is posible to have historical fundamental data in Amibroker, and not just the last value. I'm asking because i'm not able to get it to work. I've already made the custom import format, something like this:
number (scalar) representing current value of fundamental data item. There is no history of values
If you want historical fundamentals you need to store them externally in the database and access them via ODBC plugin http://www.amibroker.com/odbc.html
Scalar has multiple meanings but in computer science it is just variable that can hold one value at a time https://en.wikipedia.org/wiki/Scalar (contrasted with array that holds multiple values).
@kaizen, about the use of the ODCB AFL plugin, as suggested by @Tomasz, see also this post, where I answered a similar question, and I elaborated a bit on this subject.
And if one wants something fancier there is the option to use OLE automation to access directly Excel files or to write a web server (that probably will use some sort of DB) and then use a Rest API to query it.
But probably the ODBC way is simpler and more reliable!