Liquidity_Predator/Utilities/M_DetermineTimes.mqh

11 lines
420 B
MQL5
Raw Permalink Normal View History

2026-03-30 17:58:35 +02:00
void M_DetermineTimes()
{
stGVL.GMTTime = TimeGMT();
stGVL.dtCurrentTime = TimeCurrent();
stGVL.dtTimeCurrent_M1 = iTime(_Symbol, PERIOD_M1, 0);
stGVL.dtTimeCurrent_HTF = iTime(_Symbol, eLiquTimeframe, 0);
M_ChangeLabelText("GMTTime", "GMT time " + TimeToString(stGVL.GMTTime,TIME_SECONDS));
M_ChangeLabelText("ServerTime", "Server time " + TimeToString(stGVL.dtCurrentTime,TIME_SECONDS));
}