[Quantproject-developers] QuantProject/b7_Scripts/SimpleTesting/OneRank RunOneRank.cs, 1.11, 1.12
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2006-12-06 16:12:37
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv3504/b7_Scripts/SimpleTesting/OneRank Modified Files: RunOneRank.cs Log Message: ^GSPC and MSFT are used now, so that the script works with the minimized database (good as the first script example for new developers) Index: RunOneRank.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank/RunOneRank.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** RunOneRank.cs 26 Nov 2005 23:58:23 -0000 1.11 --- RunOneRank.cs 6 Dec 2006 16:12:27 -0000 1.12 *************** *** 84,88 **** new IndexBasedEndOfDayTimer( new EndOfDayDateTime( this.startDateTime , ! EndOfDaySpecificTime.MarketOpen ) , "^spx" ); // with IB commission --- 84,88 ---- new IndexBasedEndOfDayTimer( new EndOfDayDateTime( this.startDateTime , ! EndOfDaySpecificTime.MarketOpen ) , "^GSPC" ); // with IB commission *************** *** 95,99 **** // with no commission ! this.account = new Account( "SLR" , historicalEndOfDayTimer , new HistoricalEndOfDayDataStreamer( historicalEndOfDayTimer , this.historicalQuoteProvider ) , --- 95,99 ---- // with no commission ! this.account = new Account( "MSFT" , historicalEndOfDayTimer , new HistoricalEndOfDayDataStreamer( historicalEndOfDayTimer , this.historicalQuoteProvider ) , *************** *** 105,109 **** report.Create( "WFT One Rank" , 1 , new EndOfDayDateTime( this.endDateTime , EndOfDaySpecificTime.MarketClose ) , ! "SLR" ); report.TransactionGrid.MouseUp += new MouseEventHandler( this.mouseEventHandler ); --- 105,109 ---- report.Create( "WFT One Rank" , 1 , new EndOfDayDateTime( this.endDateTime , EndOfDaySpecificTime.MarketClose ) , ! "MSFT" ); report.TransactionGrid.MouseUp += new MouseEventHandler( this.mouseEventHandler ); |