-
Notifications
You must be signed in to change notification settings - Fork 11
/
@BuySellVolume.cs
205 lines (187 loc) · 7.48 KB
/
@BuySellVolume.cs
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
//
// Copyright (C) 2006, NinjaTrader LLC <www.ninjatrader.com>.
// NinjaTrader reserves the right to modify or overwrite this NinjaScript component with each release.
//
#region Using declarations
using System;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.ComponentModel;
using System.Xml.Serialization;
using NinjaTrader.Data;
using NinjaTrader.Gui.Chart;
#endregion
// This namespace holds all indicators and is required. Do not change it.
namespace NinjaTrader.Indicator
{
/// <summary>
/// This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
/// </summary>
[Description("This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.")]
[Gui.Design.DisplayName("BuySellVolume")]
public class BuySellVolume : Indicator
{
#region Variables
private int activeBar = -1;
private System.Collections.ArrayList alBuys = new System.Collections.ArrayList();
private System.Collections.ArrayList alSells = new System.Collections.ArrayList();
private double buys = 0;
private bool firstPaint = true;
private double previousVol = 0;
private double sells = 0;
#endregion
/// <summary>
/// This method is used to configure the indicator and is called once before any bar data is loaded.
/// </summary>
protected override void Initialize()
{
Add(new Plot(new Pen(Color.Red, 6), PlotStyle.Bar, "Sells"));
Add(new Plot(new Pen(Color.Green, 6), PlotStyle.Bar, "Buys"));
CalculateOnBarClose = false;
DisplayInDataBox = false;
PaintPriceMarkers = false;
PlotsConfigurable = true;
}
/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{
if (CurrentBar < activeBar)
{
Values[0].Set((double)alSells[CurrentBar]);
Values[1].Set((double)alSells[CurrentBar] + (double)alBuys[CurrentBar]);
return;
}
else if (CurrentBar != activeBar)
{
previousVol = 0;
alBuys.Insert(Math.Max(activeBar, 0), Historical ? 0 : buys);
alSells.Insert(Math.Max(activeBar, 0), Historical ? 0 : sells);
buys = 0;
sells = 0;
activeBar = CurrentBar;
}
if (firstPaint)
firstPaint = false;
else
{
double tradeVol = previousVol == 0 ? Volume[0] : Volume[0] - previousVol;
if (Close[0] >= GetCurrentAsk())
buys += tradeVol;
else if (Close[0] <= GetCurrentBid())
sells += tradeVol;
}
previousVol = Volume[0];
if (!firstPaint && !Historical)
{
Values[0].Set(sells);
Values[1].Set(buys + sells);
}
}
}
}
#region NinjaScript generated code. Neither change nor remove.
// This namespace holds all indicators and is required. Do not change it.
namespace NinjaTrader.Indicator
{
public partial class Indicator : IndicatorBase
{
private BuySellVolume[] cacheBuySellVolume = null;
private static BuySellVolume checkBuySellVolume = new BuySellVolume();
/// <summary>
/// This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
/// </summary>
/// <returns></returns>
public BuySellVolume BuySellVolume()
{
return BuySellVolume(Input);
}
/// <summary>
/// This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
/// </summary>
/// <returns></returns>
public BuySellVolume BuySellVolume(Data.IDataSeries input)
{
if (cacheBuySellVolume != null)
for (int idx = 0; idx < cacheBuySellVolume.Length; idx++)
if (cacheBuySellVolume[idx].EqualsInput(input))
return cacheBuySellVolume[idx];
lock (checkBuySellVolume)
{
if (cacheBuySellVolume != null)
for (int idx = 0; idx < cacheBuySellVolume.Length; idx++)
if (cacheBuySellVolume[idx].EqualsInput(input))
return cacheBuySellVolume[idx];
BuySellVolume indicator = new BuySellVolume();
indicator.BarsRequired = BarsRequired;
indicator.CalculateOnBarClose = CalculateOnBarClose;
#if NT7
indicator.ForceMaximumBarsLookBack256 = ForceMaximumBarsLookBack256;
indicator.MaximumBarsLookBack = MaximumBarsLookBack;
#endif
indicator.Input = input;
Indicators.Add(indicator);
indicator.SetUp();
BuySellVolume[] tmp = new BuySellVolume[cacheBuySellVolume == null ? 1 : cacheBuySellVolume.Length + 1];
if (cacheBuySellVolume != null)
cacheBuySellVolume.CopyTo(tmp, 0);
tmp[tmp.Length - 1] = indicator;
cacheBuySellVolume = tmp;
return indicator;
}
}
}
}
// This namespace holds all market analyzer column definitions and is required. Do not change it.
namespace NinjaTrader.MarketAnalyzer
{
public partial class Column : ColumnBase
{
/// <summary>
/// This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
/// </summary>
/// <returns></returns>
[Gui.Design.WizardCondition("Indicator")]
public Indicator.BuySellVolume BuySellVolume()
{
return _indicator.BuySellVolume(Input);
}
/// <summary>
/// This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
/// </summary>
/// <returns></returns>
public Indicator.BuySellVolume BuySellVolume(Data.IDataSeries input)
{
return _indicator.BuySellVolume(input);
}
}
}
// This namespace holds all strategies and is required. Do not change it.
namespace NinjaTrader.Strategy
{
public partial class Strategy : StrategyBase
{
/// <summary>
/// This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
/// </summary>
/// <returns></returns>
[Gui.Design.WizardCondition("Indicator")]
public Indicator.BuySellVolume BuySellVolume()
{
return _indicator.BuySellVolume(Input);
}
/// <summary>
/// This indicator is a real-time indicator and does not plot against historical data. Plots a histogram splitting volume between trades at the ask or higher and trades at the bid and lower.
/// </summary>
/// <returns></returns>
public Indicator.BuySellVolume BuySellVolume(Data.IDataSeries input)
{
if (InInitialize && input == null)
throw new ArgumentException("You only can access an indicator with the default input/bar series from within the 'Initialize()' method");
return _indicator.BuySellVolume(input);
}
}
}
#endregion