-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathADXR.Indicator.CS
60 lines (50 loc) · 1.84 KB
/
ADXR.Indicator.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
using System;
using System.Drawing;
using PowerLanguage.Function;
namespace PowerLanguage.Indicator
{
public class ADXR : IndicatorObject
{
private DirMovement m_dirmovement1;
private IPlotObject Plot1;
private IPlotObject Plot2;
public ADXR(object ctx) :
base(ctx){
length = 14;
}
[Input]
public int length { get; set; }
protected override void Create(){
m_dirmovement1 = new DirMovement(this);
Plot1 =
AddPlot(new PlotAttributes("ADX", 0, Color.Cyan,
Color.Empty, 0, 0, true));
Plot2 =
AddPlot(new PlotAttributes("ADXR", 0, Color.Magenta,
Color.Empty, 0, 0, true));
}
protected override void StartCalc(){
m_dirmovement1.PriceH = Bars.High;
m_dirmovement1.PriceL = Bars.Low;
m_dirmovement1.PriceC = Bars.Close;
m_dirmovement1.Length = length;
}
protected override void CalcBar(){
m_dirmovement1.Call();
Plot1.Set(0, m_dirmovement1.ADX.Value);
Plot2.Set(0, m_dirmovement1.ADXR.Value);
if (PublicFunctions.DoubleGreater(m_dirmovement1.ADXR.Value, m_dirmovement1.ADXR[1])
&&PublicFunctions.DoubleLessEquals(m_dirmovement1.ADXR[1], m_dirmovement1.ADXR[2]))
{
Alerts.Alert("ADXR turning up");
}
else{
if (PublicFunctions.DoubleLess(m_dirmovement1.ADXR.Value, m_dirmovement1.ADXR[1])
&&PublicFunctions.DoubleGreaterEquals(m_dirmovement1.ADXR[1], m_dirmovement1.ADXR[2]))
{
Alerts.Alert("ADXR turning down");
}
}
}
}
}