-
Notifications
You must be signed in to change notification settings - Fork 11
/
@Stochastics.cs
246 lines (220 loc) · 10.4 KB
/
@Stochastics.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
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
//
// 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>
/// The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
/// </summary>
[Description("The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.")]
public class Stochastics : Indicator
{
#region Variables
private int periodD = 7; // SlowDperiod
private int periodK = 14; // Kperiod
private int smooth = 3; // SlowKperiod
private DataSeries den;
private DataSeries nom;
private DataSeries fastK;
#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(Color.Green, "D"));
Add(new Plot(Color.Orange, "K"));
Add(new Line(Color.DarkViolet, 20, "Lower"));
Add(new Line(Color.YellowGreen, 80, "Upper"));
den = new DataSeries(this);
nom = new DataSeries(this);
fastK = new DataSeries(this);
}
/// <summary>
/// Calculates the indicator value(s) at the current index.
/// </summary>
protected override void OnBarUpdate()
{
nom.Set(Close[0] - MIN(Low, PeriodK)[0]);
den.Set(MAX(High, PeriodK)[0] - MIN(Low, PeriodK)[0]);
if (den[0].Compare(0, 0.000000000001) == 0)
fastK.Set(CurrentBar == 0 ? 50 : fastK[1]);
else
fastK.Set(Math.Min(100, Math.Max(0, 100 * nom[0] / den[0])));
// Slow %K == Fast %D
K.Set(SMA(fastK, Smooth)[0]);
D.Set(SMA(K, PeriodD)[0]);
}
#region Properties
/// <summary>
/// Gets the slow D value.
/// </summary>
[Browsable(false)]
[XmlIgnore()]
public DataSeries D
{
get { return Values[0]; }
}
/// <summary>
/// Gets the slow K value.
/// </summary>
[Browsable(false)]
[XmlIgnore()]
public DataSeries K
{
get { return Values[1]; }
}
/// <summary>
/// </summary>
[Description("Numbers of bars used for moving average over K values")]
[GridCategory("Parameters")]
public int PeriodD
{
get { return periodD; }
set { periodD = Math.Max(1, value); }
}
/// <summary>
/// </summary>
[Description("Numbers of bars used for calculating the K values")]
[GridCategory("Parameters")]
public int PeriodK
{
get { return periodK; }
set { periodK = Math.Max(1, value); }
}
/// <summary>
/// </summary>
[Description("Number of bars for smoothing the slow K values")]
[GridCategory("Parameters")]
public int Smooth
{
get { return smooth; }
set { smooth = Math.Max(1, value); }
}
#endregion
}
}
#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 Stochastics[] cacheStochastics = null;
private static Stochastics checkStochastics = new Stochastics();
/// <summary>
/// The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
/// </summary>
/// <returns></returns>
public Stochastics Stochastics(int periodD, int periodK, int smooth)
{
return Stochastics(Input, periodD, periodK, smooth);
}
/// <summary>
/// The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
/// </summary>
/// <returns></returns>
public Stochastics Stochastics(Data.IDataSeries input, int periodD, int periodK, int smooth)
{
if (cacheStochastics != null)
for (int idx = 0; idx < cacheStochastics.Length; idx++)
if (cacheStochastics[idx].PeriodD == periodD && cacheStochastics[idx].PeriodK == periodK && cacheStochastics[idx].Smooth == smooth && cacheStochastics[idx].EqualsInput(input))
return cacheStochastics[idx];
lock (checkStochastics)
{
checkStochastics.PeriodD = periodD;
periodD = checkStochastics.PeriodD;
checkStochastics.PeriodK = periodK;
periodK = checkStochastics.PeriodK;
checkStochastics.Smooth = smooth;
smooth = checkStochastics.Smooth;
if (cacheStochastics != null)
for (int idx = 0; idx < cacheStochastics.Length; idx++)
if (cacheStochastics[idx].PeriodD == periodD && cacheStochastics[idx].PeriodK == periodK && cacheStochastics[idx].Smooth == smooth && cacheStochastics[idx].EqualsInput(input))
return cacheStochastics[idx];
Stochastics indicator = new Stochastics();
indicator.BarsRequired = BarsRequired;
indicator.CalculateOnBarClose = CalculateOnBarClose;
#if NT7
indicator.ForceMaximumBarsLookBack256 = ForceMaximumBarsLookBack256;
indicator.MaximumBarsLookBack = MaximumBarsLookBack;
#endif
indicator.Input = input;
indicator.PeriodD = periodD;
indicator.PeriodK = periodK;
indicator.Smooth = smooth;
Indicators.Add(indicator);
indicator.SetUp();
Stochastics[] tmp = new Stochastics[cacheStochastics == null ? 1 : cacheStochastics.Length + 1];
if (cacheStochastics != null)
cacheStochastics.CopyTo(tmp, 0);
tmp[tmp.Length - 1] = indicator;
cacheStochastics = 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>
/// The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
/// </summary>
/// <returns></returns>
[Gui.Design.WizardCondition("Indicator")]
public Indicator.Stochastics Stochastics(int periodD, int periodK, int smooth)
{
return _indicator.Stochastics(Input, periodD, periodK, smooth);
}
/// <summary>
/// The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
/// </summary>
/// <returns></returns>
public Indicator.Stochastics Stochastics(Data.IDataSeries input, int periodD, int periodK, int smooth)
{
return _indicator.Stochastics(input, periodD, periodK, smooth);
}
}
}
// This namespace holds all strategies and is required. Do not change it.
namespace NinjaTrader.Strategy
{
public partial class Strategy : StrategyBase
{
/// <summary>
/// The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
/// </summary>
/// <returns></returns>
[Gui.Design.WizardCondition("Indicator")]
public Indicator.Stochastics Stochastics(int periodD, int periodK, int smooth)
{
return _indicator.Stochastics(Input, periodD, periodK, smooth);
}
/// <summary>
/// The Stochastic Oscillator is made up of two lines that oscillate between a vertical scale of 0 to 100. The %K is the main line and it is drawn as a solid line. The second is the %D line and is a moving average of %K. The %D line is drawn as a dotted line. Use as a buy/sell signal generator, buying when fast moves above slow and selling when fast moves below slow.
/// </summary>
/// <returns></returns>
public Indicator.Stochastics Stochastics(Data.IDataSeries input, int periodD, int periodK, int smooth)
{
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.Stochastics(input, periodD, periodK, smooth);
}
}
}
#endregion