-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathIndi_ColorBars.mqh
149 lines (136 loc) · 5.74 KB
/
Indi_ColorBars.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
141
142
143
144
145
146
147
148
149
//+------------------------------------------------------------------+
//| 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/>.
*
*/
// Includes.
#include "../BufferStruct.mqh"
#include "../Indicator/Indicator.h"
#include "../Storage/ValueStorage.all.h"
// Structs.
struct IndiColorBarsParams : IndicatorParams {
// Struct constructor.
IndiColorBarsParams(int _shift = 0) : IndicatorParams(INDI_COLOR_BARS) {
SetCustomIndicatorName("Examples\\ColorBars");
shift = _shift;
};
IndiColorBarsParams(IndiColorBarsParams &_params) { THIS_REF = _params; };
};
/**
* Implements Color Bars
*/
class Indi_ColorBars : public Indicator<IndiColorBarsParams> {
public:
/**
* Class constructor.
*/
Indi_ColorBars(IndiColorBarsParams &_p, ENUM_IDATA_SOURCE_TYPE _idstype = IDATA_BUILTIN,
IndicatorData *_indi_src = NULL, int _indi_src_mode = 0)
: Indicator(_p, IndicatorDataParams::GetInstance(5, TYPE_DOUBLE, _idstype, IDATA_RANGE_MIXED, _indi_src_mode),
_indi_src){};
Indi_ColorBars(int _shift = 0, ENUM_IDATA_SOURCE_TYPE _idstype = IDATA_BUILTIN, IndicatorData *_indi_src = NULL,
int _indi_src_mode = 0)
: Indicator(IndiColorBarsParams(),
IndicatorDataParams::GetInstance(5, TYPE_DOUBLE, _idstype, IDATA_RANGE_MIXED, _indi_src_mode),
_indi_src){};
/**
* Returns possible data source types. It is a bit mask of ENUM_INDI_SUITABLE_DS_TYPE.
*/
unsigned int GetSuitableDataSourceTypes() override {
return INDI_SUITABLE_DS_TYPE_CANDLE | INDI_SUITABLE_DS_TYPE_BASE_ONLY;
}
/**
* Returns possible data source modes. It is a bit mask of ENUM_IDATA_SOURCE_TYPE.
*/
unsigned int GetPossibleDataModes() override { return IDATA_ONCALCULATE | IDATA_ICUSTOM | IDATA_INDICATOR; }
/**
* OnCalculate-based version of Color Bars as there is no built-in one.
*/
static double iColorBars(IndicatorData *_indi, int _mode = 0, int _rel_shift = 0) {
INDICATOR_CALCULATE_POPULATE_PARAMS_AND_CACHE_LONG(_indi, "");
return iColorBarsOnArray(INDICATOR_CALCULATE_POPULATED_PARAMS_LONG, _mode, _indi PTR_DEREF ToAbsShift(_rel_shift),
_cache);
}
/**
* Calculates Color Bars on the array of values.
*/
static double iColorBarsOnArray(INDICATOR_CALCULATE_PARAMS_LONG, int _mode, int _abs_shift,
IndicatorCalculateCache<double> *_cache, bool _recalculate = false) {
_cache.SetPriceBuffer(_open, _high, _low, _close);
if (!_cache.HasBuffers()) {
_cache.AddBuffer<NativeValueStorage<double>>(4 + 1);
}
if (_recalculate) {
_cache.ResetPrevCalculated();
}
_cache.SetPrevCalculated(Indi_ColorBars::Calculate(INDICATOR_CALCULATE_GET_PARAMS_LONG, _cache.GetBuffer<double>(0),
_cache.GetBuffer<double>(1), _cache.GetBuffer<double>(2),
_cache.GetBuffer<double>(3), _cache.GetBuffer<double>(4)));
return _cache.GetTailValue<double>(_mode, _abs_shift);
}
/**
* OnCalculate() method for Color Bars indicator.
*/
static int Calculate(INDICATOR_CALCULATE_METHOD_PARAMS_LONG, ValueStorage<double> &ExtOpenBuffer,
ValueStorage<double> &ExtHighBuffer, ValueStorage<double> &ExtLowBuffer,
ValueStorage<double> &ExtCloseBuffer, ValueStorage<double> &ExtColorsBuffer) {
int i = 0;
bool vol_up = true;
// Set position for beginning.
if (i < prev_calculated) i = prev_calculated - 1;
// Start calculations.
while (i < rates_total && !IsStopped()) {
ExtOpenBuffer[i] = open[i];
ExtHighBuffer[i] = high[i];
ExtLowBuffer[i] = low[i];
ExtCloseBuffer[i] = close[i];
// Determine volume change.
if (i > 0) {
if (tick_volume[i] > tick_volume[i - 1]) vol_up = true;
if (tick_volume[i] < tick_volume[i - 1]) vol_up = false;
}
ExtColorsBuffer[i] = vol_up ? 0.0 : 1.0;
i++;
}
// Return value of prev_calculated for next call.
return (rates_total);
}
/**
* Returns the indicator's value.
*/
virtual IndicatorDataEntryValue GetEntryValue(int _mode = 0, int _abs_shift = 0) {
double _value = EMPTY_VALUE;
switch (Get<ENUM_IDATA_SOURCE_TYPE>(STRUCT_ENUM(IndicatorDataParams, IDATA_PARAM_IDSTYPE))) {
case IDATA_BUILTIN:
case IDATA_ONCALCULATE:
_value = Indi_ColorBars::iColorBars(THIS_PTR, _mode, ToRelShift(_abs_shift));
break;
case IDATA_ICUSTOM:
_value = iCustom(istate.handle, GetSymbol(), GetTf(), iparams.GetCustomIndicatorName(), _mode,
ToRelShift(_abs_shift));
break;
case IDATA_INDICATOR:
_value = Indi_ColorBars::iColorBars(THIS_PTR, _mode, ToRelShift(_abs_shift));
break;
default:
SetUserError(ERR_INVALID_PARAMETER);
break;
}
return _value;
}
};