-
Notifications
You must be signed in to change notification settings - Fork 11
/
@ADXR.cs
196 lines (177 loc) · 8.51 KB
/
@ADXR.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
//
// 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>
/// Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
/// </summary>
[Description("Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.")]
public class ADXR : Indicator
{
#region Variables
private int interval = 10;
private int period = 14;
#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, "ADXR"));
Add(new Line(Color.DarkViolet, 25, "Lower"));
Add(new Line(Color.YellowGreen, 75, "Upper"));
}
/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{
if (CurrentBar < Interval)
Value.Set((ADX(period)[0] + ADX(period)[CurrentBar]) / 2);
else
Value.Set((ADX(period)[0] + ADX(period)[interval]) / 2);
}
#region Properties
/// <summary>
/// </summary>
[Description("Used to average the current ADX value with the ADX n periods ago.")]
[GridCategory("Parameters")]
public int Interval
{
get { return interval; }
set { interval = Math.Max(1, value); }
}
/// <summary>
/// </summary>
[Description("Numbers of bars used for calculating the ADX.")]
[GridCategory("Parameters")]
public int Period
{
get { return period; }
set { period = 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 ADXR[] cacheADXR = null;
private static ADXR checkADXR = new ADXR();
/// <summary>
/// Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
/// </summary>
/// <returns></returns>
public ADXR ADXR(int interval, int period)
{
return ADXR(Input, interval, period);
}
/// <summary>
/// Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
/// </summary>
/// <returns></returns>
public ADXR ADXR(Data.IDataSeries input, int interval, int period)
{
if (cacheADXR != null)
for (int idx = 0; idx < cacheADXR.Length; idx++)
if (cacheADXR[idx].Interval == interval && cacheADXR[idx].Period == period && cacheADXR[idx].EqualsInput(input))
return cacheADXR[idx];
lock (checkADXR)
{
checkADXR.Interval = interval;
interval = checkADXR.Interval;
checkADXR.Period = period;
period = checkADXR.Period;
if (cacheADXR != null)
for (int idx = 0; idx < cacheADXR.Length; idx++)
if (cacheADXR[idx].Interval == interval && cacheADXR[idx].Period == period && cacheADXR[idx].EqualsInput(input))
return cacheADXR[idx];
ADXR indicator = new ADXR();
indicator.BarsRequired = BarsRequired;
indicator.CalculateOnBarClose = CalculateOnBarClose;
#if NT7
indicator.ForceMaximumBarsLookBack256 = ForceMaximumBarsLookBack256;
indicator.MaximumBarsLookBack = MaximumBarsLookBack;
#endif
indicator.Input = input;
indicator.Interval = interval;
indicator.Period = period;
Indicators.Add(indicator);
indicator.SetUp();
ADXR[] tmp = new ADXR[cacheADXR == null ? 1 : cacheADXR.Length + 1];
if (cacheADXR != null)
cacheADXR.CopyTo(tmp, 0);
tmp[tmp.Length - 1] = indicator;
cacheADXR = 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>
/// Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
/// </summary>
/// <returns></returns>
[Gui.Design.WizardCondition("Indicator")]
public Indicator.ADXR ADXR(int interval, int period)
{
return _indicator.ADXR(Input, interval, period);
}
/// <summary>
/// Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
/// </summary>
/// <returns></returns>
public Indicator.ADXR ADXR(Data.IDataSeries input, int interval, int period)
{
return _indicator.ADXR(input, interval, period);
}
}
}
// This namespace holds all strategies and is required. Do not change it.
namespace NinjaTrader.Strategy
{
public partial class Strategy : StrategyBase
{
/// <summary>
/// Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
/// </summary>
/// <returns></returns>
[Gui.Design.WizardCondition("Indicator")]
public Indicator.ADXR ADXR(int interval, int period)
{
return _indicator.ADXR(Input, interval, period);
}
/// <summary>
/// Average Directional Movement Rating quantifies momentum change in the ADX. It is calculated by adding two values of ADX (the current value and a value n periods back), then dividing by two. This additional smoothing makes the ADXR slightly less responsive than ADX. The interpretation is the same as the ADX; the higher the value, the stronger the trend.
/// </summary>
/// <returns></returns>
public Indicator.ADXR ADXR(Data.IDataSeries input, int interval, int period)
{
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.ADXR(input, interval, period);
}
}
}
#endregion