forked from tslab-hub/handlers
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBarNumber.cs
More file actions
128 lines (107 loc) · 4 KB
/
BarNumber.cs
File metadata and controls
128 lines (107 loc) · 4 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
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using TSLab.Script.Handlers.Options;
namespace TSLab.Script.Handlers
{
// TODO: правильней назвать кубик Bar INDEX или Index of the bar
[HandlerCategory(HandlerCategories.TradeMath)]
[HelperName("Bar number", Language = Constants.En)]
[HelperName("Номер бара", Language = Constants.Ru)]
[InputsCount(1)]
[Input(0, TemplateTypes.SECURITY | TemplateTypes.DOUBLE | TemplateTypes.INT | TemplateTypes.BOOL)]
[OutputsCount(1)]
[OutputType(TemplateTypes.DOUBLE)]
[Description("Индекс элемента в списке баров или числовых значений.")]
[HelperDescription("An index of an element in a list of bars or numeric values.", Constants.En)]
public sealed class BarNumber : IOneSourceHandler, IDoubleReturns, IStreamHandler, ISecurityInputs, IDoubleInputs, IIntInputs, IBooleanInputs
{
/// <summary>
/// Рудиментарная реализация интерфейса IList[double], которая для экономии памяти и повышения скорости
/// обеспечивает только минимальный функционал. В качестве 'элементов' выступают индексы исходного списка баров.
/// </summary>
private sealed class IndexList : IList<double>
{
public IndexList(int count)
{
Count = count;
}
public IEnumerator<double> GetEnumerator()
{
for (var i = 0; i < Count; i++)
yield return i;
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
public void Add(double item)
{
throw new NotSupportedException();
}
public void Clear()
{
throw new NotSupportedException();
}
public bool Contains(double item)
{
return IndexOf(item) >= 0;
}
public void CopyTo(double[] array, int arrayIndex)
{
throw new NotSupportedException();
}
public bool Remove(double item)
{
throw new NotSupportedException();
}
public int Count { get; }
public bool IsReadOnly
{
get { return true; }
}
public int IndexOf(double item)
{
var indexOf = (int)item;
if (item != indexOf)
throw new ArgumentException(nameof(item));
return indexOf >= 0 && indexOf < Count ? indexOf : -1;
}
public void Insert(int index, double item)
{
throw new NotSupportedException();
}
public void RemoveAt(int index)
{
throw new NotSupportedException();
}
public double this[int index]
{
get
{
if (index >= 0 && index < Count)
return index;
throw new ArgumentOutOfRangeException(nameof(index));
}
set { throw new NotSupportedException(); }
}
}
public IList<double> Execute(ISecurity security)
{
return new IndexList(security.Bars.Count);
}
public IList<double> Execute(IList<double> security)
{
return new IndexList(security.Count);
}
public IList<double> Execute(IList<int> security)
{
return new IndexList(security.Count);
}
public IList<double> Execute(IList<bool> security)
{
return new IndexList(security.Count);
}
}
}