Example #1
0
 public Divergence(AbstractIndicator indicator) : base(indicator.Period)
 {
     MA = new QSPolyMA(indicator.Period);
     this.indicator = indicator;
     subIndicators.Add(indicator.toString(), indicator);
 }
Example #2
0
 public CrossoverIndex(int n) : base(n)
 {
     POLYMA = new QSPolyMA(n);
     SMA = new SMA(n);
 }