[Quantproject-developers] QuantProject/b7_Scripts/TickerSelectionTesting/SimpleSelection RunSimple
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-11-22 18:23:08
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/SimpleSelection In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3752/b7_Scripts/TickerSelectionTesting/SimpleSelection Modified Files: RunSimpleSelection.cs RunSimpleSelectionOpenToClose.cs Log Message: - HistoricalEndOfDayDataStreamer has been replaced by HistoricalDataStreamer.cs - HistoricalEndOfDayOrderExecutor has been replaced by HistoricalOrderExecutor Index: RunSimpleSelectionOpenToClose.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/SimpleSelection/RunSimpleSelectionOpenToClose.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RunSimpleSelectionOpenToClose.cs 29 Sep 2008 21:19:53 -0000 1.4 --- RunSimpleSelectionOpenToClose.cs 22 Nov 2008 18:23:02 -0000 1.5 *************** *** 74,80 **** { this.account = new Account( this.ScriptName , this.endOfDayTimer , ! new HistoricalEndOfDayDataStreamer( this.endOfDayTimer , this.historicalQuoteProvider ) , ! new HistoricalEndOfDayOrderExecutor( this.endOfDayTimer , this.historicalQuoteProvider ), new IBCommissionManager()); --- 74,80 ---- { this.account = new Account( this.ScriptName , this.endOfDayTimer , ! new HistoricalDataStreamer( this.endOfDayTimer , this.historicalQuoteProvider ) , ! new HistoricalOrderExecutor( this.endOfDayTimer , this.historicalQuoteProvider ), new IBCommissionManager()); Index: RunSimpleSelection.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/SimpleSelection/RunSimpleSelection.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RunSimpleSelection.cs 29 Sep 2008 21:19:36 -0000 1.4 --- RunSimpleSelection.cs 22 Nov 2008 18:23:02 -0000 1.5 *************** *** 166,172 **** //default account with no commissions this.account = new Account( this.scriptName , this.endOfDayTimer , ! new HistoricalEndOfDayDataStreamer( this.endOfDayTimer , this.historicalMarketValueProvider ) , ! new HistoricalEndOfDayOrderExecutor( this.endOfDayTimer , this.historicalMarketValueProvider )); --- 166,172 ---- //default account with no commissions this.account = new Account( this.scriptName , this.endOfDayTimer , ! new HistoricalDataStreamer( this.endOfDayTimer , this.historicalMarketValueProvider ) , ! new HistoricalOrderExecutor( this.endOfDayTimer , this.historicalMarketValueProvider )); |