-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathDrawIndicator.mqh
140 lines (118 loc) · 3.52 KB
/
DrawIndicator.mqh
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
//+------------------------------------------------------------------+
//| EA31337 framework |
//| Copyright 2016-2021, 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/>.
*
*/
/**
* @file
* Group of functions intended for working with graphic objects relating to any specified chart.
*/
// Ignore processing of this file if already included.
#ifndef DRAW_INDICATOR_MQH
#define DRAW_INDICATOR_MQH
// Includes.
#include "DictObject.mqh"
#include "Draw.mqh"
#include "Object.mqh"
// Forward declaration.
class IndicatorBase;
class DrawPoint {
public:
datetime time;
double value;
// Operator overloading methods.
void operator=(const DrawPoint& r) {
time = r.time;
value = r.value;
}
// Special methods.
DrawPoint(const DrawPoint& r) : time(r.time), value(r.value) {}
DrawPoint(datetime _time = 0, double _value = 0) : time(_time), value(_value) {}
};
class DrawIndicator {
protected:
color color_line;
Draw* draw;
IndicatorBase* indi;
bool enabled;
int window;
public:
// Object variables.
DictObject<string, DrawPoint> last_points;
/* Special methods */
/**
* Class constructor.
*/
DrawIndicator(IndicatorBase* _indi) : indi(_indi), enabled(false), window(0) {
// color_line = Object::IsValid(_indi) ? _indi.GetParams().indi_color : clrRed; // @fixme
draw = new Draw();
}
/**
* Class deconstructor.
*/
~DrawIndicator() {
if (draw != NULL) {
delete draw;
}
/* @fixme
for (DictObjectIterator<string, DrawPoint> iter = indis.Begin(); iter.IsValid(); ++iter) {
delete iter.Value();
}
*/
}
/* Setters */
/* Class methods */
/**
* Sets whether drawing is enabled.
*/
void SetEnabled(bool _value) { enabled = _value; }
/**
* Checks whether drawing is enabled.
*/
bool GetEnabled() { return enabled; }
/**
* Sets color of line.
*/
void SetColorLine(color _clr) { color_line = _clr; }
/**
* Sets chart's window index.
*/
void SetWindow(int _window) { window = _window; }
/**
* Draw line from the last point.
*/
void DrawLineTo(string _name, datetime _time, double _value, int _window = -1) {
if (!enabled) {
return;
}
if (_window == -1) {
_window = window;
}
if (!last_points.KeyExists(_name)) {
DrawPoint _point(_time, _value);
last_points.Set(_name, _point);
} else {
DrawPoint* last_point = last_points.GetByKey(_name);
draw PTR_DEREF TLine(_name + "_" + IntegerToString(_time), last_point PTR_DEREF value, _value,
last_point PTR_DEREF time, _time, color_line, false, _window);
last_point PTR_DEREF time = _time;
last_point PTR_DEREF value = _value;
}
}
};
#endif // DRAW_INDICATOR_MQH