mirror of
https://github.com/softwaredevelop/mql5.git
synced 2026-07-27 20:47:44 +00:00
52 lines
3.0 KiB
Plaintext
52 lines
3.0 KiB
Plaintext
//+------------------------------------------------------------------+
|
|
//| AccountInfoDisplayInit.mqh |
|
|
//| Copyright 2000-2025, MetaQuotes Ltd. |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
//---
|
|
//+------------------------------------------------------------------+
|
|
//| Arrays to initialize graphics objects AccountInfoDisplay. |
|
|
//+------------------------------------------------------------------+
|
|
string init_str[]=
|
|
{
|
|
// --- I. Basic Account Information ---
|
|
"I. Basic Account Information",
|
|
"Login",
|
|
"Name",
|
|
"Server",
|
|
"Company",
|
|
"Currency",
|
|
"Currency Digits",
|
|
|
|
// --- II. Financial Status and Balances ---
|
|
"II. Financial Status and Balances",
|
|
"Balance",
|
|
"Credit",
|
|
"Profit",
|
|
"Equity",
|
|
|
|
// --- III. Margin and Risk Management ---
|
|
"III. Margin and Risk Management",
|
|
"Margin",
|
|
"Free Margin",
|
|
"Margin Level",
|
|
"Margin Call",
|
|
"Margin StopOut",
|
|
|
|
// --- IV. Trading Modes and Rules ---
|
|
"IV. Trading Modes and Rules",
|
|
"Trade Mode",
|
|
"Leverage",
|
|
"Margin Mode",
|
|
"Stopout Mode",
|
|
"FIFO Close",
|
|
"Hedge Allowed",
|
|
|
|
// --- V. Trading Permissions ---
|
|
"V. Trading Permissions",
|
|
"Trade Allowed",
|
|
"Trade Expert"
|
|
};
|
|
//+------------------------------------------------------------------+
|
|
//+------------------------------------------------------------------+
|