Class TickData
- Namespace
- Balsam.DataServers
- Assembly
- Balsam.Backtester.dll
Encapsulates tick data.
public class TickData
- Inheritance
-
TickData
- Inherited Members
- Extension Methods
Properties
ConditionCode
Gets/sets the condition code(s) associated with this tick if any.
public string ConditionCode { get; set; }
Property Value
Price
Gets/sets the price.
public double Price { get; set; }
Property Value
Size
Gets/sets the size.
public double Size { get; set; }
Property Value
Symbol
Gets/sets the symbol.
public string Symbol { get; set; }
Property Value
TickType
Gets/sets the type of tick (bid, ask, or trade).
public TickType TickType { get; set; }
Property Value
Timestamp
Gets/sets the timestamp.
public DateTime Timestamp { get; set; }
Property Value
Methods
ToString()
Returns a string representation of this tick object.
public override string ToString()