Starting date and time for bar selection operation. When you create a bar
table via the Connection.CompressTicks
method you must specify a starting date and time, and an ending date and time
for the bar table, since bar tables are
temporary tables designed for accessing historic data. Use BarUpdateManager
to watch real-time bars after historic data has been accessed from the bar
table.
Property Type
DateTimeInfo, Read-write
Syntax
BarInfo.StartDateTime dt = new
DateTimeInfo dt.Year = Year dt.Month = Month dt.Day = Day dt.Hour = Hour dt.Minute = Minute dt.Second = Second dt.Millisecond = Millisecond delete dt |
Remarks
BarInfo Object are used only by Selection
Objects. If a Selection Object's
DataType property is dtTick,
the BarInfo Object is ignored since tick
tables do not have intervals or date range selections (tick tables contain
simply ticks, not bars). The Connection.CompressTicks
method is used to create bar tables.
See Also