-
Notifications
You must be signed in to change notification settings - Fork 6
/
First_Bar_of_Month.Indicator.CS
43 lines (36 loc) · 1.33 KB
/
First_Bar_of_Month.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
using System.Drawing;
namespace PowerLanguage.Indicator
{
[SameAsSymbol(true)]
public class First_Bar_of_Month : IndicatorObject
{
private IPlotObject Plot1;
private IPlotObject Plot2;
public First_Bar_of_Month(object ctx) :
base(ctx) {}
protected override void Create(){
Plot1 =
AddPlot(new PlotAttributes("Plot1", EPlotShapes.BarHigh,
Color.Magenta, Color.Empty, 0,
0,
true));
Plot2 =
AddPlot(new PlotAttributes("Plot2", EPlotShapes.BarLow,
Color.Magenta, Color.Empty, 0,
0,
true));
}
protected override void CalcBar()
{
EResolution resolution = Bars.Info.Resolution.Type;
if (resolution == EResolution.Year ||
resolution == EResolution.Quarter || resolution == EResolution.Month) return;
if ( Bars.Time[0].Month != Bars.Time[1].Month)
{
Plot1.Set(0, Bars.High[0]);
Plot2.Set(0, Bars.Low[0]);
Alerts.Alert();
}
}
}
}