[Quantproject-developers] QuantProject/b1_ADT ConstantsProvider.cs, 1.21, 1.22
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2011-08-21 09:56:10
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT
In directory vz-cvs-3.sog:/tmp/cvs-serv25949
Modified Files:
ConstantsProvider.cs
Log Message:
Updated ConstantsProvider
Index: ConstantsProvider.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/ConstantsProvider.cs,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** ConstantsProvider.cs 30 Nov 2008 22:40:09 -0000 1.21
--- ConstantsProvider.cs 21 Aug 2011 09:56:08 -0000 1.22
***************
*** 1,3 ****
--- 1,4 ----
using System;
+ using QuantProject.ADT.Timing;
namespace QuantProject.ADT
***************
*** 47,50 ****
--- 48,55 ----
public static string SeparatorForWeights = ">";
//separator for separating ticker by its weight in GenomeRepresentation class
+ public static Time OpenTime = new Time(9, 30, 0);
+ //conventional open time (in reality, it depends on the market);
+ public static Time CloseTime = new Time(16, 0, 0);
+ //conventional close time (in reality, it depends on the market);
}
}
|