TradeMUX SDK Documentation  1.0
TradeMUX SDK Documentation
void PrintFormat ( string  format_string,
params object[]  Parameters 
)

Format and print sets of symbols and values in the Expert Advisor log in accordance with a preset format.

Parameters
format_stringformat string consists of simple symbols, and if the format string is followed by arguments, it also contains format specifications.
ParametersAny values of simple types separated by commas. Total number of parameters can't exceed 64 including the format string

Note: The number, order and type of parameters must exactly match the set of qualifiers, otherwise the print result is undefined. If the format string is followed by parameters, this string must contain format specifications that denote output format of these parameters. Specification of format always starts with the percent sign (%). A format string is read from left to right. When the first format specification is met (if there is any), the value of the first parameter after the format string is transformed and output according to the preset specification. The second format specification calls transformation and output of the second parameter, and so on till the format string end. The format specification has the following form: %[flags][width][.precision][{h | l | ll | I32 | I64}]type Each field of the format specification is either a simple symbol, or a number denoting a simple format option. The simplest format specification contains only the percent sign (%) and a symbol defining the type of the output parameter (for example, s). If you need to output the percent sign in the format string, use the format specification %%.