public AnalysisBuilder SetTechnicalAnalysis(ITechnicalAnalysis value)
        {
            if (value != null)
            {
                _technicalAnalysis      = value;
                _technicalAnalysisIsSet = true;
            }

            return(this);
        }
Beispiel #2
0
 public bool Equals(ITechnicalAnalysis other) => other != null &&
 FastSMA == other.FastSMA &&
 SlowSMA == other.SlowSMA &&
 TAZ == other.TAZ &&
 Trend == other.Trend;