forked from tslab-hub/handlers
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBarsConstructorHandler.cs
More file actions
428 lines (326 loc) · 14.3 KB
/
BarsConstructorHandler.cs
File metadata and controls
428 lines (326 loc) · 14.3 KB
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using TSLab.DataSource;
using TSLab.Script.Handlers.Options;
namespace TSLab.Script.Handlers
{
[HandlerCategory(HandlerCategories.TradeMath)]
[HelperName("Bars Constructor", Language = Constants.En)]
[HelperName("Конструктор баров", Language = Constants.Ru)]
[InputsCount(5)]
[Input(0, TemplateTypes.DOUBLE, Name = "Open")]
[Input(1, TemplateTypes.DOUBLE, Name = "Close")]
[Input(2, TemplateTypes.DOUBLE, Name = "High")]
[Input(3, TemplateTypes.DOUBLE, Name = "Low")]
[Input(4, TemplateTypes.DOUBLE, Name = "Volume")]
[OutputsCount(1)]
[OutputType(TemplateTypes.SECURITY)]
[Description("Кубик преобразует 5 числовых серий на входе в синтетический инструмент с барами. Порядок входов: открытие, закрытие, максимум, минимум, объем.")]
[HelperDescription("Handler converts 5 input numeric series to a synthetic security with bars. Inputs are: open, close, high, low, volume.", Constants.En)]
public sealed class BarsConstructorHandler : IFiveSourcesHandler, ISecurityReturns, IStreamHandler, IDoubleInputs, IContextUses, INeedVariableName
{
#region ISecurity
private sealed class Security : DisposeHelper, ISecurity
{
private readonly ISecurity m_security;
public Security(IReadOnlyList<IDataBar> bars, string symbol, ISecurity security)
{
Bars = bars;
Symbol = symbol;
Positions = new PositionsList(this);
m_security = security;
}
protected override void Dispose(bool disposing)
{
}
public string Symbol { get; }
public IDataSourceSecurity SecurityDescription => throw new NotSupportedException();
public FinInfo FinInfo => throw new NotSupportedException();
public IReadOnlyList<IDataBar> Bars { get; }
public bool IsBarsLoaded => true;
public IReadOnlyList<IQueueData> GetBuyQueue(int barNum)
{
throw new NotSupportedException();
}
public IReadOnlyList<IQueueData> GetSellQueue(int barNum)
{
throw new NotSupportedException();
}
public IReadOnlyList<ITrade> GetTrades(int barNum)
{
throw new NotSupportedException();
}
public IReadOnlyList<ITrade> GetTrades(int firstBarIndex, int lastBarIndex)
{
throw new NotSupportedException();
}
public int GetTradesCount(int firstBarIndex, int lastBarIndex)
{
throw new NotSupportedException();
}
public IReadOnlyList<IReadOnlyList<ITrade>> GetTradesPerBar(int firstBarIndex, int lastBarIndex)
{
throw new NotSupportedException();
}
public IList<double> OpenPrices => Bars.Select(item => item.Open).ToArray();
public IList<double> ClosePrices => Bars.Select(item => item.Close).ToArray();
public IList<double> HighPrices => Bars.Select(item => item.High).ToArray();
public IList<double> LowPrices => Bars.Select(item => item.Low).ToArray();
public IList<double> Volumes => Bars.Select(item => item.Volume).ToArray();
public Interval IntervalInstance => m_security.IntervalInstance;
public int Interval => m_security.Interval;
public DataIntervals IntervalBase => m_security.IntervalBase;
public int LotSize => m_security.LotSize;
public double LotTick => m_security.LotTick;
public double Margin => m_security.Margin;
public double Tick => m_security.Tick;
public int Decimals => m_security.Decimals;
public IPositionsList Positions { get; }
public ISecurity CompressTo(int interval)
{
throw new NotSupportedException();
}
public ISecurity CompressTo(Interval interval)
{
throw new NotSupportedException();
}
public ISecurity CompressTo(Interval interval, int shift)
{
throw new NotSupportedException();
}
public ISecurity CompressTo(Interval interval, int shift, int adjustment, int adjShift)
{
throw new NotSupportedException();
}
public ISecurity CompressToVolume(Interval interval)
{
throw new NotSupportedException();
}
public ISecurity CompressToPriceRange(Interval interval)
{
throw new NotSupportedException();
}
public IList<double> Decompress(IList<double> candles)
{
throw new NotSupportedException();
}
public IList<TK> Decompress<TK>(IList<TK> candles, DecompressMethodWithDef method)
where TK : struct
{
throw new NotSupportedException();
}
public void ConnectSecurityList(IGraphListBase list)
{
}
public void ConnectDoubleList(IGraphListBase list, IDoubleHandlerWithUpdate handler)
{
}
public double RoundPrice(double price)
{
return m_security.RoundPrice(price);
}
public double RoundShares(double shares)
{
return m_security.RoundShares(shares);
}
public CommissionDelegate Commission { get; set; }
public ISecurity CloneAndReplaceBars(IEnumerable<IDataBar> newcandles)
{
throw new NotSupportedException();
}
public string CacheName => throw new NotSupportedException();
public void UpdateQueueData()
{
}
public double InitDeposit { get; set; }
public bool IsRealtime => false;
public bool IsPortfolioReady => false;
public bool SimulatePositionOrdering => false;
public bool IsAligned => true;
}
#endregion
#region IPositionsList
private sealed class PositionsList : IPositionsList
{
public PositionsList(ISecurity security)
{
Security = security;
}
public IEnumerator<IPosition> GetEnumerator()
{
return Enumerable.Empty<IPosition>().GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
public bool IsRealtime => throw new NotSupportedException();
public ISecurity Security { get; }
public int BarsCount => Security.Bars.Count;
public bool HavePositions => false;
public int ActivePositionCount => 0;
public IPosition GetLastPosition(int barNum)
{
return null;
}
public IPosition GetLastPositionActive(int barNum)
{
return null;
}
public IPosition GetLastLongPositionActive(int barNum)
{
return null;
}
public IPosition GetLastShortPositionActive(int barNum)
{
return null;
}
public IPosition GetLastPositionClosed(int barNum)
{
return null;
}
public IPosition GetLastLongPositionClosed(int barNum)
{
return null;
}
public IPosition GetLastShortPositionClosed(int barNum)
{
return null;
}
public IPosition GetLastForSignal(string signalName, int barNum)
{
return null;
}
public IPosition GetLastActiveForSignal(string signalName)
{
return null;
}
public IPosition GetLastClosedForSignal(string signalName, int barNum)
{
return null;
}
public IPosition GetLastActiveForSignal(string signalName, int barNum)
{
return null;
}
public IPosition GetLastForCloseSignal(string signalName, int barNum)
{
return null;
}
public IEnumerable<IPosition> GetActiveForBar(int barNum)
{
return Enumerable.Empty<IPosition>();
}
public IEnumerable<IPosition> GetClosedForBar(int barNum)
{
return Enumerable.Empty<IPosition>();
}
public IEnumerable<IPosition> GetClosedOrActiveForBar(int barNum)
{
return Enumerable.Empty<IPosition>();
}
public void BuyAtMarket(int barNum, double shares, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void BuyAtPrice(int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void BuyIfLess(int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void BuyIfLess(int barNum, double shares, double price, double? slippage, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void BuyIfGreater(int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void BuyIfGreater(int barNum, double shares, double price, double? slippage, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void SellAtMarket(int barNum, double shares, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void SellAtPrice(int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void SellIfGreater(int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void SellIfGreater(int barNum, double shares, double price, double? slippage, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void SellIfLess(int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void SellIfLess(int barNum, double shares, double price, double? slippage, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void OpenAtMarket(bool isLong, int barNum, double shares, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void OpenAtPrice(bool isLong, int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void OpenIfLess(bool isLong, int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void OpenIfLess(bool isLong, int barNum, double shares, double price, double? slippage, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void OpenIfGreater(bool isLong, int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public void OpenIfGreater(bool isLong, int barNum, double shares, double price, double? slippage, string signalName, string notes = null)
{
throw new NotSupportedException();
}
public IPosition MakeVirtualPosition(int barNum, double shares, double price, string signalName, string notes = null)
{
throw new NotSupportedException();
}
}
#endregion
public IContext Context { get; set; }
public string VariableName { get; set; }
public ISecurity Execute(IList<double> openList, IList<double> closeList, IList<double> highList, IList<double> lowList, IList<double> volumeList)
{
if (openList == null)
throw new ArgumentNullException(nameof(openList));
if (closeList == null)
throw new ArgumentNullException(nameof(closeList));
if (highList == null)
throw new ArgumentNullException(nameof(highList));
if (lowList == null)
throw new ArgumentNullException(nameof(lowList));
if (volumeList == null)
throw new ArgumentNullException(nameof(volumeList));
var security = Context.Runtime.Securities.First();
var securityBars = security.Bars;
var count = Math.Min(openList.Count, Math.Min(closeList.Count, Math.Min(highList.Count, Math.Min(lowList.Count, Math.Min(volumeList.Count, securityBars.Count)))));
var bars = new IDataBar[count];
for (var i = 0; i < count; i++)
bars[i] = new DataBar(securityBars[i].Date, openList[i], highList[i], lowList[i], closeList[i], volumeList[i]);
return new Security(bars, VariableName, security);
}
}
}