18 lines
900 B
MQL5
18 lines
900 B
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| AccountInfoInitSample.mqh |
|
||
|
//| Copyright 2000-2025, MetaQuotes Ltd. |
|
||
|
//| https://www.mql5.com |
|
||
|
//+------------------------------------------------------------------+
|
||
|
//---
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Arrays to initialize graphics objects AccountInfoSample. |
|
||
|
//+------------------------------------------------------------------+
|
||
|
string init_str[]=
|
||
|
{
|
||
|
"Login","TradeMode","Leverage","MarginMode","TradeAllowed",
|
||
|
"TradeExpert","Balance","Credit","Profit","Equity",
|
||
|
"Margin","FreeMargin","MarginLevel","MarginCall","MarginStopOut",
|
||
|
"Name","Server","Currency","Company"
|
||
|
};
|
||
|
//+------------------------------------------------------------------+
|