Beispiel #1
0
 public SingleIndicator(string displayName, string shortName, string description, TimeframeMode timeframe)
     : base(new DateTimeKeyedSingleIndicator(), 300)
 {
     this.displayName = displayName;
     this.shortName   = shortName;
     this.description = description;
     this.timeframe   = timeframe;
 }
Beispiel #2
0
 public SMA(TimeframeMode timeframe)
 {
     this.timeframe = timeframe;
 }
Beispiel #3
0
 public MovingSum(TimeframeMode timeframe, int barCount) : base("MovingSum", "ms", "Moving Sum", timeframe)
 {
     this.barCount = barCount;
 }
Beispiel #4
0
 public BollingerBandsCore(TimeframeMode timeframe, int barCount, SMACore smaCore)
     : base("BollingerBands", "bb", "Bollinger Bands", timeframe)
 {
     this.barCount = barCount;
     this.smaCore  = smaCore;
 }
Beispiel #5
0
 public SMACore(TimeframeMode timeframe, int barCount)
     : base("SimpleMovingAverage", "sma", "Simple Moving Average", timeframe)
 {
     this.barCount = barCount;
 }
Beispiel #6
0
 public PriceAction(TimeframeMode timeframe) : base(new DateTimeKeyedPricebars(), 300)
 {
     this.timeframe = timeframe;
 }