EA-Setka-2/framework/common/time.mqh

12 lines
212 B
MQL5
Raw Permalink Normal View History

2025-05-30 14:50:44 +02:00
#ifndef FRAMEWORK_TIME_MQH
#define FRAMEWORK_TIME_MQH
class c_time {
public:
static int get_seconds_from_time_frame ( ENUM_TIMEFRAMES time_frame ) {
return PeriodSeconds(time_frame);
}
};
#endif