-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
DateTime.extern.h
79 lines (67 loc) · 2.65 KB
/
DateTime.extern.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//+------------------------------------------------------------------+
//| EA31337 framework |
//| Copyright 2016-2023, EA31337 Ltd |
//| https://github.com/EA31337 |
//+------------------------------------------------------------------+
/*
* This file is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Includes.
#include "DateTime.enum.h"
/**
* @file
* Includes external declarations related to date and time.
*/
#ifndef __MQL__
#pragma once
// Forward declarations.
struct MqlDateTime;
/**
* MQL's "datetime" type.
*/
class datetime {
time_t dt;
public:
datetime();
datetime(const long& _time);
datetime(const int& _time);
bool operator==(const int _time) const;
bool operator==(const datetime& _time) const;
bool operator<(const int _time) const;
bool operator>(const int _time) const;
bool operator<(const datetime& _time);
bool operator>(const datetime& _time);
operator long() const;
};
extern datetime TimeCurrent();
extern datetime TimeCurrent(MqlDateTime& dt_struct);
extern int CopyTime(string symbol_name, ENUM_TIMEFRAMES timeframe, int start_pos, int count,
ARRAY_REF(datetime, time_array));
extern int CopyTime(string symbol_name, ENUM_TIMEFRAMES timeframe, datetime start_time, int count,
ARRAY_REF(datetime, time_array));
extern int CopyTime(string symbol_name, ENUM_TIMEFRAMES timeframe, datetime start_time, datetime stop_time,
ARRAY_REF(datetime, time_array));
extern datetime StructToTime(MqlDateTime& dt_struct);
extern bool TimeToStruct(datetime dt, MqlDateTime& dt_struct);
extern datetime TimeGMT();
extern datetime TimeGMT(MqlDateTime& dt_struct);
extern datetime TimeTradeServer();
extern datetime TimeTradeServer(MqlDateTime& dt_struct);
extern datetime StringToTime(const string& value);
extern string TimeToString(datetime value, int mode = TIME_DATE | TIME_MINUTES);
template <char... T>
extern datetime operator"" _D();
#define DATETIME_LITERAL(STR) _D " ## STR ## "
#endif