Files
mql5/Scripts/AccountInfoDisplayInit.mqh
T

52 lines
3.0 KiB
Plaintext
Raw Normal View History

2025-07-12 13:03:15 +02:00
//+------------------------------------------------------------------+
//| AccountInfoDisplayInit.mqh |
//| Copyright 2000-2025, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
//---
//+------------------------------------------------------------------+
//| Arrays to initialize graphics objects AccountInfoDisplay. |
//+------------------------------------------------------------------+
string init_str[]=
{
// --- I. Basic Account Information ---
2025-07-12 13:46:49 +02:00
"I. Basic Account Information",
2025-07-12 13:03:15 +02:00
"Login",
"Name",
"Server",
"Company",
"Currency",
"Currency Digits",
2025-07-12 13:46:49 +02:00
2025-07-12 13:03:15 +02:00
// --- II. Financial Status and Balances ---
2025-07-12 13:46:49 +02:00
"II. Financial Status and Balances",
2025-07-12 13:03:15 +02:00
"Balance",
"Credit",
"Profit",
"Equity",
2025-07-12 13:46:49 +02:00
2025-07-12 13:03:15 +02:00
// --- III. Margin and Risk Management ---
2025-07-12 13:46:49 +02:00
"III. Margin and Risk Management",
2025-07-12 13:03:15 +02:00
"Margin",
"Free Margin",
"Margin Level",
"Margin Call",
"Margin StopOut",
2025-07-12 13:46:49 +02:00
2025-07-12 13:03:15 +02:00
// --- IV. Trading Modes and Rules ---
2025-07-12 13:46:49 +02:00
"IV. Trading Modes and Rules",
2025-07-12 13:03:15 +02:00
"Trade Mode",
"Leverage",
"Margin Mode",
"Stopout Mode",
"FIFO Close",
"Hedge Allowed",
2025-07-12 13:46:49 +02:00
2025-07-12 13:03:15 +02:00
// --- V. Trading Permissions ---
2025-07-12 13:46:49 +02:00
"V. Trading Permissions",
2025-07-12 13:03:15 +02:00
"Trade Allowed",
"Trade Expert"
};
//+------------------------------------------------------------------+
2025-07-12 13:46:49 +02:00
//+------------------------------------------------------------------+
2025-07-12 13:03:15 +02:00