EA-Setka-2/framework/kernel/mql4/kernel_time.mqh

19 lines
318 B
MQL5
Raw Permalink Normal View History

2025-05-30 14:50:44 +02:00
#ifndef FRAMEWORK_KERNEL_TIME_MQH
#define FRAMEWORK_KERNEL_TIME_MQH
class kernel_time {
public:
static int get_hour ( datetime value ) {
return TimeHour ( value );
}
static int get_minute ( datetime value ) {
return TimeMinute ( value );
}
static int get_day_of_week() {
return DayOfWeek();
}
};
#endif