[Quantproject-developers] QuantProject/b7_Scripts/SimpleTesting/OneRank OneRank.cs,1.3,1.4
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-12-20 00:14:12
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27792/b7_Scripts/SimpleTesting/OneRank Modified Files: OneRank.cs Log Message: A parameter name is changed from account to account1 (strange debugging behavior was arising with the previous naming) Index: OneRank.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/SimpleTesting/OneRank/OneRank.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** OneRank.cs 13 Dec 2004 01:50:43 -0000 1.3 --- OneRank.cs 20 Dec 2004 00:14:03 -0000 1.4 *************** *** 90,96 **** /// <param name="account">Account with which to run the strategy</param> /// <param name="lastDateTime">Date to stop the strategy</param> ! public OneRank( Account account , DateTime lastDateTime ) { ! this.account = account; this.lastDateTime = lastDateTime; this.account.EndOfDayTimer.MarketOpen += --- 90,96 ---- /// <param name="account">Account with which to run the strategy</param> /// <param name="lastDateTime">Date to stop the strategy</param> ! public OneRank( Account account1 , DateTime lastDateTime ) { ! this.account = account1; this.lastDateTime = lastDateTime; this.account.EndOfDayTimer.MarketOpen += |