public GetCyclesByPercentageAndDateInterval(
     ICreateCycles cyclesCreator,
     IDownloadStockHistory stockHistoryDownloader)
 {
     _cyclesCreator          = cyclesCreator;
     _stockHistoryDownloader = stockHistoryDownloader;
 }
Beispiel #2
0
 public StopLossIndicator(
     ICreateStopLossCycles cyclesCreator,
     IDownloadStockHistory stockHistoryDownloader)
 {
     _cyclesCreator          = cyclesCreator;
     _stockHistoryDownloader = stockHistoryDownloader;
     _subCycles = new List <Cycle>();
 }
Beispiel #3
0
 public AverageCalculator(IDownloadStockHistory downloadStockHistory)
 {
     _stockHistoryDownloader = downloadStockHistory;
 }
Beispiel #4
0
 public SaveStockHistory(IDownloadStockHistory downloadStockHistory)
 {
     _downloadStockHistory = downloadStockHistory;
 }
Beispiel #5
0
 public GetCycles(IDownloadStockHistory downloadStockHistory)
 {
     _downloadStockHistory = downloadStockHistory;
 }
 public CurrentPerformanceCalculator(IDownloadStockHistory downloadStockHistory)
 {
     _stockHistoryDownloader = downloadStockHistory;
 }