-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathC_BullEng_BearEng.Indicator.CS
69 lines (57 loc) · 2.2 KB
/
C_BullEng_BearEng.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
61
62
63
64
65
66
67
68
69
using System;
using System.Drawing;
namespace PowerLanguage.Indicator
{
[SameAsSymbol(true)]
public class C_BullEng_BearEng : IndicatorObject
{
private int m_length = 14;
private Function.C_BullEng_BearEng m_c_bulleng_beareng1;
private VariableObject<int> m_obullishengulfing;
private VariableObject<int> m_obearishengulfing;
private IPlotObject Plot1;
private IPlotObject Plot2;
public C_BullEng_BearEng(object ctx) :
base(ctx) {}
[Input]
public int length{
get { return m_length; }
set { m_length = value; }
}
protected override void Create(){
m_c_bulleng_beareng1 = new Function.C_BullEng_BearEng(this);
m_obullishengulfing = new VariableObject<int>(this);
m_obearishengulfing = new VariableObject<int>(this);
Plot1 =
AddPlot(new PlotAttributes("BullEng", EPlotShapes.Point,
Color.Yellow, Color.Empty, 4,
0,
true));
Plot2 =
AddPlot(new PlotAttributes("BearEng", EPlotShapes.Point,
Color.Magenta, Color.Empty, 4,
0,
true));
}
protected override void StartCalc(){
m_c_bulleng_beareng1.Length = length;
m_c_bulleng_beareng1.obullishengulfing = m_obullishengulfing;
m_c_bulleng_beareng1.obearishengulfing = m_obearishengulfing;
m_obullishengulfing.DefaultValue = 0;
m_obearishengulfing.DefaultValue = 0;
}
protected override void CalcBar(){
m_c_bulleng_beareng1.Call();
if (m_obullishengulfing.Value == 1){
Plot1.Set(0, Bars.High[0]);
Alerts.Alert("BullishEngulfing");
}
else{
if (m_obearishengulfing.Value == 1){
Plot2.Set(0, Bars.Low[0]);
Alerts.Alert("BearishEngulfing");
}
}
}
}
}