[Quantproject-developers] QuantDownloader/Downloader/OpenTickDownloader/BarsSelectors BarIdentifie
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2009-01-29 19:37:52
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/BarsSelectors In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8414/OpenTickDownloader/BarsSelectors Modified Files: BarIdentifier.cs Log Message: interval has been renamed to barIntervalInSeconds Index: BarIdentifier.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/BarsSelectors/BarIdentifier.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BarIdentifier.cs 9 Jul 2008 22:11:45 -0000 1.1 --- BarIdentifier.cs 29 Jan 2009 19:37:41 -0000 1.2 *************** *** 33,37 **** private string ticker; private DateTime dateTimeForOpenInNewYorkTimeZone; ! private long interval; public string Ticker { --- 33,37 ---- private string ticker; private DateTime dateTimeForOpenInNewYorkTimeZone; ! private long barIntervalInSeconds; public string Ticker { *************** *** 41,46 **** get { return this.dateTimeForOpenInNewYorkTimeZone; } } ! public long Interval { ! get { return this.interval; } } --- 41,46 ---- get { return this.dateTimeForOpenInNewYorkTimeZone; } } ! public long BarIntervalInSeconds { ! get { return this.barIntervalInSeconds; } } *************** *** 62,66 **** this.dateTimeForOpenInNewYorkTimeZone = dateTimeForOpenInNewYorkTimeZone; ! this.interval = interval; } } --- 62,66 ---- this.dateTimeForOpenInNewYorkTimeZone = dateTimeForOpenInNewYorkTimeZone; ! this.barIntervalInSeconds = interval; } } |