public AlertFactory(List <StdDevResult> stdDevResults, List <Quote> historicalQuotes)
 {
     HistoricalQuotes = historicalQuotes;
     StdDevResults    = stdDevResults;
     //Calculator = new Calculator(HistoricalQuotes, StdDevResults);
     SecondCalculator     = new SecondCalculator(HistoricalQuotes, stdDevResults);
     IndicatorSuggestions = new IndicatorSuggestions();
 }
 internal string GetSecondSuggestion()
 {
     return(SecondCalculator.GetSuggestions());
 }