18 lines
914 B
MQL5
18 lines
914 B
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| OrderInfoSampleInit.mqh |
|
||
|
//| Copyright 2000-2025, MetaQuotes Ltd. |
|
||
|
//| https://www.mql5.com |
|
||
|
//+------------------------------------------------------------------+
|
||
|
//---
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Arrays to initialize graphics objects OrderInfoSample. |
|
||
|
//+------------------------------------------------------------------+
|
||
|
string init_str[]=
|
||
|
{
|
||
|
"Total","Current","Ticket","Symbol","TimeSetup",
|
||
|
"Type","State","TimeExpiration","TimeDone","TypeFilling",
|
||
|
"TypeTime","Expert","VolumeInit","VolumeCurr","PriceOpen",
|
||
|
"StopLoss","TakeProfit","PriceCurr","PriceStopLimit","Comment"
|
||
|
};
|
||
|
//+------------------------------------------------------------------+
|