[Quantproject-developers] QuantProject/b7_Scripts/SimpleTesting/OneRank RunOneRank.cs, 1.13, 1.14
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-11-22 18:22:11
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3648/b7_Scripts/SimpleTesting/OneRank Modified Files: RunOneRank.cs OneRankForm.cs Log Message: - HistoricalEndOfDayDataStreamer has been replaced by HistoricalDataStreamer.cs - HistoricalEndOfDayOrderExecutor has been replaced by HistoricalOrderExecutor Index: RunOneRank.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank/RunOneRank.cs,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** RunOneRank.cs 29 Sep 2008 21:17:09 -0000 1.13 --- RunOneRank.cs 22 Nov 2008 18:22:03 -0000 1.14 *************** *** 90,96 **** // with IB commission // this.account = new Account( "MSFT" , historicalEndOfDayTimer , ! // new HistoricalEndOfDayDataStreamer( historicalEndOfDayTimer , // this.historicalQuoteProvider ) , ! // new HistoricalEndOfDayOrderExecutor( historicalEndOfDayTimer , // this.historicalQuoteProvider ) , // new IBCommissionManager() ); --- 90,96 ---- // with IB commission // this.account = new Account( "MSFT" , historicalEndOfDayTimer , ! // new HistoricalDataStreamer( historicalEndOfDayTimer , // this.historicalQuoteProvider ) , ! // new HistoricalOrderExecutor( historicalEndOfDayTimer , // this.historicalQuoteProvider ) , // new IBCommissionManager() ); *************** *** 98,104 **** // with no commission this.account = new Account( "MSFT" , historicalEndOfDayTimer , ! new HistoricalEndOfDayDataStreamer( historicalEndOfDayTimer , this.historicalMarketValueProvider ) , ! new HistoricalEndOfDayOrderExecutor( historicalEndOfDayTimer , this.historicalMarketValueProvider ) ); OneRank oneRank = new OneRank( account , --- 98,104 ---- // with no commission this.account = new Account( "MSFT" , historicalEndOfDayTimer , ! new HistoricalDataStreamer( historicalEndOfDayTimer , this.historicalMarketValueProvider ) , ! new HistoricalOrderExecutor( historicalEndOfDayTimer , this.historicalMarketValueProvider ) ); OneRank oneRank = new OneRank( account , Index: OneRankForm.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank/OneRankForm.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** OneRankForm.cs 29 Sep 2008 21:17:09 -0000 1.2 --- OneRankForm.cs 22 Nov 2008 18:22:03 -0000 1.3 *************** *** 184,190 **** // with IB commission // this.account = new Account( "MSFT" , historicalEndOfDayTimer , ! // new HistoricalEndOfDayDataStreamer( historicalEndOfDayTimer , // this.historicalQuoteProvider ) , ! // new HistoricalEndOfDayOrderExecutor( historicalEndOfDayTimer , // this.historicalQuoteProvider ) , // new IBCommissionManager() ); --- 184,190 ---- // with IB commission // this.account = new Account( "MSFT" , historicalEndOfDayTimer , ! // new HistoricalDataStreamer( historicalEndOfDayTimer , // this.historicalQuoteProvider ) , ! // new HistoricalOrderExecutor( historicalEndOfDayTimer , // this.historicalQuoteProvider ) , // new IBCommissionManager() ); *************** *** 192,198 **** // with no commission this.account = new Account( this.ticker.Text , historicalEndOfDayTimer , ! new HistoricalEndOfDayDataStreamer( historicalEndOfDayTimer , this.historicalQuoteProvider ) , ! new HistoricalEndOfDayOrderExecutor( historicalEndOfDayTimer , this.historicalQuoteProvider ) ); } --- 192,198 ---- // with no commission this.account = new Account( this.ticker.Text , historicalEndOfDayTimer , ! new HistoricalDataStreamer( historicalEndOfDayTimer , this.historicalQuoteProvider ) , ! new HistoricalOrderExecutor( historicalEndOfDayTimer , this.historicalQuoteProvider ) ); } |