[Quantproject-developers] QuantDownloader/Downloader/OpenTickDownloader Bar.cs, 1.1, 1.2
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2009-02-04 19:50:00
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31517 Modified Files: Bar.cs Log Message: IntervalValueInSeconds is now used instead of Interval Index: Bar.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/Bar.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Bar.cs 9 Jul 2008 22:06:56 -0000 1.1 --- Bar.cs 4 Feb 2009 19:49:51 -0000 1.2 *************** *** 33,37 **** private string exchange; private DateTime dateTimeForOpenInUTCTime; ! private long interval; private double open; private double high; --- 33,37 ---- private string exchange; private DateTime dateTimeForOpenInUTCTime; ! private long intervalValueInSeconds; private double open; private double high; *************** *** 53,59 **** get { return this.dateTimeForOpenInUTCTime; } } ! public long Interval { ! get { return this.interval; } } public double Open --- 53,59 ---- get { return this.dateTimeForOpenInUTCTime; } } ! public long IntervalValueInSeconds { ! get { return this.intervalValueInSeconds; } } public double Open *************** *** 93,97 **** this.exchange = exchange; this.dateTimeForOpenInUTCTime = dateTimeForOpenInUTCTime; ! this.interval = interval; this.open = open; this.high = high; --- 93,97 ---- this.exchange = exchange; this.dateTimeForOpenInUTCTime = dateTimeForOpenInUTCTime; ! this.intervalValueInSeconds = interval; this.open = open; this.high = high; |