[Quantproject-developers] QuantProject/b4_Business/a0_Validation/Validators CloseToCloseValidator.cs
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-05-26 15:30:21
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a0_Validation/Validators In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19524/b4_Business/a0_Validation/Validators Modified Files: CloseToCloseValidator.cs RangeToRangeValidator.cs Log Message: Many features have been moved from the DataAccess.Tables namespace to the Data.DataTables namespace Index: CloseToCloseValidator.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a0_Validation/Validators/CloseToCloseValidator.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CloseToCloseValidator.cs 9 May 2004 16:19:02 -0000 1.3 --- CloseToCloseValidator.cs 26 May 2004 15:30:08 -0000 1.4 *************** *** 82,87 **** private int validate_currentTicker( string currentTicker , int currentTickerStartingRowIndex ) { ! this.closeToCloseVisuallyValidated = ! QuantProject.DataAccess.Tables.VisuallyValidatedQuotes.GetCloseToCloseValidated( currentTicker ); History closeToClose = new History(); History closeToCloseMovingAverage; --- 82,86 ---- private int validate_currentTicker( string currentTicker , int currentTickerStartingRowIndex ) { ! this.closeToCloseVisuallyValidated = VisuallyValidatedQuotes.GetCloseToCloseValidated( currentTicker ); History closeToClose = new History(); History closeToCloseMovingAverage; Index: RangeToRangeValidator.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a0_Validation/Validators/RangeToRangeValidator.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RangeToRangeValidator.cs 8 May 2004 17:16:42 -0000 1.2 --- RangeToRangeValidator.cs 26 May 2004 15:30:08 -0000 1.3 *************** *** 81,86 **** private int validate_currentTicker( string currentTicker , int currentTickerStartingRowIndex ) { ! this.rangeToRangeVisuallyValidated = ! QuantProject.DataAccess.Tables.VisuallyValidatedQuotes.GetRangeToRangeValidated( currentTicker ); History rangeToRange = new History(); History rangeToRangeMovingAverage; --- 81,85 ---- private int validate_currentTicker( string currentTicker , int currentTickerStartingRowIndex ) { ! this.rangeToRangeVisuallyValidated = VisuallyValidatedQuotes.GetRangeToRangeValidated( currentTicker ); History rangeToRange = new History(); History rangeToRangeMovingAverage; |