mirror of
https://github.com/softwaredevelop/mql5.git
synced 2026-07-27 20:47:44 +00:00
18 lines
917 B
Plaintext
18 lines
917 B
Plaintext
//+------------------------------------------------------------------+
|
|
//| AccountInfoDisplayInit.mqh |
|
|
//| Copyright 2000-2025, MetaQuotes Ltd. |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
//---
|
|
//+------------------------------------------------------------------+
|
|
//| Arrays to initialize graphics objects AccountInfoDisplay. |
|
|
//+------------------------------------------------------------------+
|
|
string init_str[]=
|
|
{
|
|
"Login","TradeMode","Leverage","MarginMode","TradeAllowed",
|
|
"TradeExpert","Balance","Credit","Profit","Equity",
|
|
"Margin","FreeMargin","MarginLevel","MarginCall","MarginStopOut",
|
|
"Name","Server","Currency","Company"
|
|
};
|
|
//+------------------------------------------------------------------+
|