MQL5 Cookbook: Implementing an Associative Array or a Dictionary for Quick Data Access
by
, 06-10-2015 at 09:40 PM (1997 Views)
This article describes a special algorithm allowing to gain access to elements by their unique keys. Any base data type can be used as a key. For example it may be represented as a string or an integer variable. Such data container is commonly referred to as a dictionary or an associative array. It provides easier and more efficient way of problem solving.
More...