Esempio n. 1
0
 public Linear(int _CountNum) : base(_CountNum)
 {
     a    = 0;
     b    = 0;
     macd = new MACD(CountNum);
 }
Esempio n. 2
0
 public Linear(Linear other) : base(other.CountNum)
 {
     a    = other.a;
     b    = other.b;
     macd = new MACD(other.macd);
 }
Esempio n. 3
0
 public MACD(MACD other) : base(other.CountNum)
 {
     ma   = other.ma;
     low  = other.low;
     high = other.high;
 }