-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCrossunders_per_Bar.Indicator.CS
62 lines (53 loc) · 2.1 KB
/
Crossunders_per_Bar.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
using System;
using System.Drawing;
namespace PowerLanguage.Indicator
{
public class Crossunders_per_Bar : IndicatorObject
{
private VariableObject<Int32> m_mycurrentbar;
private VariableObject<Double> m_crossunders;
private VariableObject<Boolean> m_lastabove;
private IPlotObject Plot1;
public Crossunders_per_Bar(object ctx) :
base(ctx){
datanum = 1;
}
private ISeries<double> formula1 { get; set; }
private ISeries<double> formula2 { get; set; }
[Input]
public double datanum { get; set; }
protected override void Create(){
m_mycurrentbar = new VariableObject<Int32>(this);
m_crossunders = new VariableObject<Double>(this);
m_lastabove = new VariableObject<Boolean>(this);
Plot1 =
AddPlot(new PlotAttributes("Crossunders", EPlotShapes.Histogram,
Color.Magenta, Color.Empty, 0,
0,
true));
}
protected override void StartCalc(){
formula1 = Bars.Close;
formula2 = new Lambda<double>(_bb => Bars.Close.Average(9, _bb));
}
protected override void CalcBar(){
var m_formula2 = formula2.Value;
if ((Bars.LastBarOnChart && (Bars.Status != EBarState.Close))){
if (Bars.CurrentBar > m_mycurrentbar.Value){
m_crossunders.Value = 0;
m_mycurrentbar.Value = Bars.CurrentBar;
}
if ((PublicFunctions.DoubleLess(formula1[0], m_formula2) && m_lastabove.Value)){
m_crossunders.Value = (m_crossunders.Value + 1);
m_lastabove.Value = false;
}
else{
if (PublicFunctions.DoubleGreater(formula1[0], m_formula2)){
m_lastabove.Value = true;
}
}
Plot1.Set(0, m_crossunders.Value);
}
}
}
}