EA-Setka-2/framework/common/time.mqh
super.admin a4b861dd93 convert
2025-05-30 14:50:44 +02:00

12 lines
No EOL
212 B
MQL5

#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