Files
mql5/Scripts/AccountInfoDisplayInit.mqh
T
2025-07-12 13:03:15 +02:00

42 lines
2.5 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 ---
"Login",
"Name",
"Server",
"Company",
"Currency",
"Currency Digits",
// --- II. Financial Status and Balances ---
"Balance",
"Credit",
"Profit",
"Equity",
// --- III. Margin and Risk Management ---
"Margin",
"Free Margin",
"Margin Level",
"Margin Call",
"Margin StopOut",
// --- IV. Trading Modes and Rules ---
"Trade Mode",
"Leverage",
"Margin Mode",
"Stopout Mode",
"FIFO Close",
"Hedge Allowed",
// --- V. Trading Permissions ---
"Trade Allowed",
"Trade Expert"
};
//+------------------------------------------------------------------+