-
Notifications
You must be signed in to change notification settings - Fork 64
/
dinapoli.lua
364 lines (300 loc) · 10.6 KB
/
dinapoli.lua
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
--logfile=io.open("C:\\SBERBANK\\QUIK_SMS\\LuaIndicators\\qlua_log.txt", "w")
Settings =
{
Name = "*Dinapoli",
period = 64,
bars = 300,
display_mode = 1,
all_time_max = 0,
line=
{
{
Name = "SMA",
Color = RGB(0, 128, 0),
Type = TYPE_LINE,
Width = 2
}
,
{
Name = "(-60;60)",
Color = RGB(150, 150, 150),
Type = TYPE_HISTOGRAM,
Width = 2
}
,
{
Name = "(-80;-60]||[60;80)",
Color = RGB(230, 240, 8),
Type = TYPE_HISTOGRAM,
Width = 2
}
,
{
Name = "(-100;-80]||[80;100)",
Color = RGB(80, 170, 255),
Type = TYPE_HISTOGRAM,
Width = 2
}
,
{
Name = "(--;-100]||[100;++)",
Color = RGB(255, 0, 0),
Type = TYPE_HISTOGRAM,
Width = 2
}
,
{
Name = "60;80",
Color = RGB(230, 240, 8),
Type = TYPE_LINE,
Width = 1
}
,
{
Name = "-80;-60",
Color = RGB(230, 240, 8),
Type = TYPE_LINE,
Width = 1
}
,
{
Name = "80;100",
Color = RGB(80, 170, 255),
Type = TYPE_LINE,
Width = 1
}
,
{
Name = "-100;-80",
Color = RGB(80, 170, 255),
Type = TYPE_LINE,
Width = 1
}
,
{
Name = "100;++",
Color = RGB(255, 0, 0),
Type = TYPE_LINE,
Width = 1
}
,
{
Name = "--;-100",
Color = RGB(255, 0, 0),
Type = TYPE_LINE,
Width = 1
}
}
}
----------------------------------------------------------
function DinapoliSMA()
local TrendlessOSBuffer={}
local ExtBuffer1={}
local ExtBuffer2={}
local ExtBuffer3={}
local ExtBuffer4={}
local top={}
local bottom={}
local H_tmp={}
local L_tmp={}
local SMA=fSMA()
return function(ind, _p, _b, _dm, _alm, ds)
local period = _p
local index = ind
local Display_mode = _dm
local bars = _b
local all_time_max = _alm
local OBLevel = 0; --граница уровня перекупленности
local OSLevel = 0; --граница уровня перепроданности
local EightyOBlvl=0.8*OBLevel; --методика расчёта 80% перекупленности
local EightyOSlvl=0.8*OSLevel; --методика расчёта 80% перепроданности
local SixtyOBlvl=0.6*OBLevel; --методика расчёта 60% перекупленности
local SixtyOSlvl=0.6*OSLevel; --методика расчёта 60% перепроданности
if index == 1 then
TrendlessOSBuffer = {}
ExtBuffer1={}
ExtBuffer2={}
ExtBuffer3={}
ExtBuffer4={}
top={}
bottom={}
TrendlessOSBuffer[index]=0
ExtBuffer1[index]=0
ExtBuffer2[index]=0
ExtBuffer3[index]=0
ExtBuffer4[index]=0
top[index]=0
bottom[index]=0
return nil, nil, nil, nil, nil, SixtyOBlvl, SixtyOSlvl, EightyOBlvl, EightyOSlvl, OBLevel, OSLevel
end
TrendlessOSBuffer[index] = TrendlessOSBuffer[index-1]
top[index]=top[index-1]
bottom[index]=bottom[index-1]
if index <= period or not CandleExist(index) then
return nil, nil, nil, nil, nil, SixtyOBlvl, SixtyOSlvl, EightyOBlvl, EightyOSlvl, OBLevel, OSLevel
end
local sma = SMA(index, period)
TrendlessOSBuffer[index]= C(index) - sma --SMA(index, {Period=period, Metod = "SMA", VType="C", round="off"}, ds)
--WriteLog ("top[index-1] "..tostring(top[index-1]))
--WriteLog ("sma "..tostring(sma))
--WriteLog ("TrendlessOSBuffer[index] "..tostring(TrendlessOSBuffer[index]))
if TrendlessOSBuffer[index] > top[index-1] then
top[index] = TrendlessOSBuffer[index];
else
top[index] = top[index-1]
end
if TrendlessOSBuffer[index] < bottom[index-1] then
bottom[index] = TrendlessOSBuffer[index];
else
bottom[index] = bottom[index-1]
end
if index <= bars then
return nil, nil, nil, nil, nil, SixtyOBlvl, SixtyOSlvl, EightyOBlvl, EightyOSlvl, OBLevel, OSLevel
end
current = TrendlessOSBuffer[index]
local val_h=0
local val_l=0
firstIndex = index - bars
if index > bars and all_time_max == 0 then
val_h=math.max(unpack(TrendlessOSBuffer,index-bars,index))
val_l=math.min(unpack(TrendlessOSBuffer,index-bars,index))
end
if val_h == 0 then
val_h = top[index]
end
if val_l == 0 then
val_l = bottom[index]
end
OBLevel = val_h
OSLevel = val_l
EightyOBlvl=0.8*OBLevel; --методика расчёта 80% перекупленности
EightyOSlvl=0.8*OSLevel; --методика расчёта 80% перепроданности
SixtyOBlvl=0.6*OBLevel; --методика расчёта 60% перекупленности
SixtyOSlvl=0.6*OSLevel; --методика расчёта 60% перепроданности
if (current>0.6*OSLevel and current<0.6*OBLevel) --если значние индикатора находится в диапазоне (-60%;60%)
then
ExtBuffer1[index]=current; --то отображается гистограмма ExtBuffer1[]
ExtBuffer2[index]=0.0;
ExtBuffer3[index]=0.0;
ExtBuffer4[index]=0.0;
else --если значение индикатора не входит в диапазон (-60%;60%), то проверяется следующее условие
if ((current>0.8*OSLevel and current<=0.6*OSLevel) or (current>=0.6*OBLevel and current<0.8*OBLevel)) --если значение индикатора в диапазоне (-80%;-60%] или [60%;80%)
then
ExtBuffer1[index]=0.0;
ExtBuffer2[index]=current; --то отображается гистограмма ExtBuffer2[]
ExtBuffer3[index]=0.0;
ExtBuffer4[index]=0.0;
else --если значение индикатора не входит и в диапазон (-80%;-60%]||[60%;80%), то проверяется следующее условие
if ((current>OSLevel and current<=0.8*OSLevel) or (current>=0.8*OBLevel and current<OBLevel)) --если значение индикатора в диапазоне (-100%;-80%] или [80%;100%)
then
ExtBuffer1[index]=0.0;
ExtBuffer2[index]=0.0;
ExtBuffer3[index]=current; --то отображается ExtBuffer3[]
ExtBuffer4[index]=0.0;
else --если значение индикатора не входит и в диапазон (-100%;-80%]||[80%;100%), то проверяется следующее условие
if (current<=OSLevel or current>=OBLevel) --если значение индикатора входит в диапазон (--;-100%]||[100%;++)
then
ExtBuffer1[index]=0.0;
ExtBuffer2[index]=0.0;
ExtBuffer3[index]=0.0;
ExtBuffer4[index]=current; --то отображается ExtBuffer4[]
end
end
end
end
if Display_mode == 1 then
return nil, ExtBuffer1[index], ExtBuffer2[index], ExtBuffer3[index], ExtBuffer4[index] , nil, nil, nil, nil, nil, nil
elseif Display_mode == 2 then
return TrendlessOSBuffer[index], nil, nil, nil, nil , nil, nil, nil, nil, nil, nil
elseif Display_mode == 3 then -- отладка
return nil, ExtBuffer1[index], ExtBuffer2[index], ExtBuffer3[index], ExtBuffer4[index] , SixtyOBlvl, SixtyOSlvl, EightyOBlvl, EightyOSlvl, OBLevel, OSLevel
end
end
end
----------------------------
function Init()
myDinapoliSMA = DinapoliSMA()
return #Settings.line
end
function OnCalculate(index)
--WriteLog ("OnCalc() ".."CandleExist("..index.."): "..tostring(CandleExist(index)).."; T("..index.."); "..isnil(toYYYYMMDDHHMMSS(T(index))," - ").."; C("..index.."): "..isnil(C(index),"-"));
return myDinapoliSMA(index, Settings.period, Settings.bars, Settings.display_mode, Settings.all_time_max)
end
-- Пользовательcкие функции
function WriteLog(text)
logfile:write(tostring(os.date("%c",os.time())).." "..text.."\n");
logfile:flush();
LASTLOGSTRING = text;
end;
function isnil(a,b)
if a == nil then
return b
else
return a
end;
end;
function toYYYYMMDDHHMMSS(datetime)
if type(datetime) ~= "table" then
message("в функции toYYYYMMDDHHMMSS неверно задан параметр: datetime="..tostring(datetime))
return ""
else
local Res = tostring(datetime.year)
if #Res == 1 then Res = "000"..Res end
local month = tostring(datetime.month)
if #month == 1 then Res = Res.."0"..month; else Res = Res..month; end
local day = tostring(datetime.day)
if #day == 1 then Res = Res.."0"..day; else Res = Res..day; end
local hour = tostring(datetime.hour)
if #hour == 1 then Res = Res.."0"..hour; else Res = Res..hour; end
local minute = tostring(datetime.min)
if #minute == 1 then Res = Res.."0"..minute; else Res = Res..minute; end
local sec = tostring(datetime.sec);
if #sec == 1 then Res = Res.."0"..sec; else Res = Res..sec; end;
return Res
end
end --toYYYYMMDDHHMMSS
function highestHigh(BB, index, period)
if index == 1 then
return nil
else
local highestHigh = 0
for i = math.max(index - period, 2), index, 1 do
if BB[index] > highestHigh and BB[index] > 0 then
highestHigh = BB[index]
end
end
return highestHigh
end
end
function lowestLow(BB, index, period)
if index == 1 then
return nil
else
local lowestLow = 0
for i = math.max(index - period, 2), index, 1 do
if BB[index] < lowestLow and BB[index] < 0 then
lowestLow = BB[index]
end
end
return lowestLow
end
end
function fSMA()
return function (Index, Period, idp)
local Out = 0
if Index >= Period then
local sum = 0
local quant = 0
for i = Index-Period+1, Index do
if CandleExist(i) then
sum = sum + C(i) or 0
quant = quant + 1
end
end
if quant ~=0 then
Out = sum/quant
end
end
return Out
end
end