-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathConsecutive_Downs.Indicator.CS
48 lines (40 loc) · 1.25 KB
/
Consecutive_Downs.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
using System;
using System.Drawing;
namespace PowerLanguage.Indicator
{
[SameAsSymbol(true)]
public class Consecutive_Downs : IndicatorObject
{
private ISeries<Double> m_price;
private VariableObject<int> m_value1;
private IPlotObject Plot1;
public Consecutive_Downs(object ctx) :
base(ctx){
consecutivebarsdown = 3;
}
[Input]
public double consecutivebarsdown { get; set; }
protected override void Create(){
m_value1 = new VariableObject<int>(this);
Plot1 = AddPlot(new PlotAttributes("ConsecDn", EPlotShapes.Point, Color.Blue, Color.Empty, 4, 0, true));
}
protected override void StartCalc(){
m_price = Bars.Close;
}
protected override void CalcBar(){
if (PublicFunctions.DoubleLess(m_price[0], m_price[1])){
m_value1.Value ++;
}
else{
m_value1.Value = 0;
}
if (PublicFunctions.DoubleGreaterEquals(m_value1.Value, consecutivebarsdown)){
Plot1.Set(0, Bars.Low[0]);
Alerts.Alert();
}
else{
Plot1.Reset();
}
}
}
}