-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
Indi_Volumes.mqh
176 lines (156 loc) · 6.58 KB
/
Indi_Volumes.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
//+------------------------------------------------------------------+
//| 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 "../BufferStruct.mqh"
#include "../Indicator/IndicatorTickOrCandleSource.h"
#include "../Storage/ValueStorage.all.h"
// Structs.
struct IndiVolumesParams : IndicatorParams {
ENUM_APPLIED_VOLUME applied_volume;
// Struct constructor.
IndiVolumesParams(ENUM_APPLIED_VOLUME _applied_volume = VOLUME_TICK, int _shift = 0) : IndicatorParams(INDI_VOLUMES) {
applied_volume = _applied_volume;
SetCustomIndicatorName("Examples\\Volumes");
shift = _shift;
};
IndiVolumesParams(IndiVolumesParams &_params, ENUM_TIMEFRAMES _tf) {
THIS_REF = _params;
tf = _tf;
};
};
/**
* Implements the Volumes indicator.
*/
class Indi_Volumes : public IndicatorTickOrCandleSource<IndiVolumesParams> {
public:
/**
* Class constructor.
*/
Indi_Volumes(IndiVolumesParams &_p, ENUM_IDATA_SOURCE_TYPE _idstype = IDATA_BUILTIN, IndicatorData *_indi_src = NULL,
int _indi_src_mode = 0)
: IndicatorTickOrCandleSource(
_p, IndicatorDataParams::GetInstance(2, TYPE_DOUBLE, _idstype, IDATA_RANGE_MIXED, _indi_src_mode),
_indi_src){};
Indi_Volumes(ENUM_TIMEFRAMES _tf = PERIOD_CURRENT, int _shift = 0)
: IndicatorTickOrCandleSource(INDI_VOLUMES, _tf, _shift){};
/**
* Built-in version of Volumes.
*/
static double iVolumes(string _symbol, ENUM_TIMEFRAMES _tf, ENUM_APPLIED_VOLUME _av, int _mode = 0, int _shift = 0,
IndicatorData *_obj = NULL) {
INDICATOR_CALCULATE_POPULATE_PARAMS_AND_CACHE_LONG(_symbol, _tf, Util::MakeKey("Indi_Volumes", (int)_av));
return iVolumesOnArray(INDICATOR_CALCULATE_POPULATED_PARAMS_LONG, _av, _mode, _shift, _cache);
}
/**
* Calculates AMVolumes on the array of values.
*/
static double iVolumesOnArray(INDICATOR_CALCULATE_PARAMS_LONG, ENUM_APPLIED_VOLUME _av, int _mode, int _shift,
IndicatorCalculateCache<double> *_cache, bool _recalculate = false) {
_cache.SetPriceBuffer(_open, _high, _low, _close);
if (!_cache.HasBuffers()) {
_cache.AddBuffer<NativeValueStorage<double>>(1 + 1);
}
if (_recalculate) {
_cache.ResetPrevCalculated();
}
_cache.SetPrevCalculated(Indi_Volumes::Calculate(INDICATOR_CALCULATE_GET_PARAMS_LONG, _cache.GetBuffer<double>(0),
_cache.GetBuffer<double>(1), _av));
return _cache.GetTailValue<double>(_mode, _shift);
}
/**
* On-indicator version of Volumes indicator.
*/
static double iVolumesOnIndicator(IndicatorData *_indi, string _symbol, ENUM_TIMEFRAMES _tf, ENUM_APPLIED_VOLUME _av,
int _mode = 0, int _shift = 0, IndicatorData *_obj = NULL) {
INDICATOR_CALCULATE_POPULATE_PARAMS_AND_CACHE_LONG_DS(
_indi, _symbol, _tf, Util::MakeKey("Indi_Volumes_ON_" + _indi.GetFullName(), (int)_av));
return iVolumesOnArray(INDICATOR_CALCULATE_POPULATED_PARAMS_LONG, _av, _mode, _shift, _cache);
}
/**
* OnCalculate() method for Volumes indicator.
*/
static int Calculate(INDICATOR_CALCULATE_METHOD_PARAMS_LONG, ValueStorage<double> &ExtVolumesBuffer,
ValueStorage<double> &ExtColorsBuffer, ENUM_APPLIED_VOLUME InpVolumeType) {
if (rates_total < 2) return (0);
// Starting work.
int pos = prev_calculated - 1;
// Correct position.
if (pos < 1) {
ExtVolumesBuffer[0] = 0;
pos = 1;
}
// Main cycle.
if (InpVolumeType == VOLUME_TICK)
CalculateVolume(pos, rates_total, tick_volume, ExtVolumesBuffer, ExtColorsBuffer);
else
CalculateVolume(pos, rates_total, volume, ExtVolumesBuffer, ExtColorsBuffer);
// OnCalculate done. Return new prev_calculated.
return (rates_total);
}
static void CalculateVolume(const int pos, const int rates_total, ValueStorage<long> &volume,
ValueStorage<double> &ExtVolumesBuffer, ValueStorage<double> &ExtColorsBuffer) {
ExtVolumesBuffer[0] = (double)volume[0].Get();
ExtColorsBuffer[0] = 0.0;
for (int i = pos; i < rates_total && !IsStopped(); i++) {
double curr_volume = (double)volume[i].Get();
double prev_volume = (double)volume[i - 1].Get();
// Calculate indicator.
ExtVolumesBuffer[i] = curr_volume;
ExtColorsBuffer[i] = (curr_volume > prev_volume) ? 0.0 : 1.0;
}
}
/**
* Returns the indicator's value.
*/
virtual IndicatorDataEntryValue GetEntryValue(int _mode = 0, int _shift = 0) {
double _value = EMPTY_VALUE;
int _ishift = _shift >= 0 ? _shift : iparams.GetShift();
switch (Get<ENUM_IDATA_SOURCE_TYPE>(STRUCT_ENUM(IndicatorDataParams, IDATA_PARAM_IDSTYPE))) {
case IDATA_BUILTIN:
_value = Indi_Volumes::iVolumes(GetSymbol(), GetTf(), /*[*/ GetAppliedVolume() /*]*/, _mode, _ishift, THIS_PTR);
break;
case IDATA_ICUSTOM:
_value = iCustom(istate.handle, GetSymbol(), GetTf(), iparams.GetCustomIndicatorName(),
/*[*/ GetAppliedVolume() /*]*/, _mode, _ishift);
break;
case IDATA_INDICATOR:
_value = Indi_Volumes::iVolumesOnIndicator(GetDataSource(), GetSymbol(), GetTf(),
/*[*/ GetAppliedVolume() /*]*/, _mode, _ishift, THIS_PTR);
break;
default:
SetUserError(ERR_INVALID_PARAMETER);
}
return _value;
}
/* Getters */
/**
* Get applied volume.
*/
ENUM_APPLIED_VOLUME GetAppliedVolume() { return iparams.applied_volume; }
/* Setters */
/**
* Set applied volume.
*/
void SetAppliedVolume(ENUM_APPLIED_VOLUME _applied_volume) {
istate.is_changed = true;
iparams.applied_volume = _applied_volume;
}
};