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