public SMA(SMA s) { this.dDate = s.dDate; this.fVals = s.fVals; this.MS = s.MS; this.time = s.time; //s.dDate.CopyTo(this.dDate); //s.fVals.CopyTo(this.fVals); }
public Guess_SMA() { sm5 = new SMA(); sm10 = new SMA(); sm20 = new SMA(); sm50 = new SMA(); }