Tick Class

Represents a market data tick (bid, ask or trade)
[DataContract()] 
public class Tick : DataObject
This language is not supported or no code example is available.
[DataContract()] 
public ref class Tick : public DataObject^
This language is not supported or no code example is available.
public  
DataContract() 
class Tick 
extends DataObject
This language is not supported or no code example is available.
Name Description
Public constructor Tick() Initializes a new instance of the Tick class.
Public constructor Tick(DateTime, DateTime, byte, int, double, int) Initializes a new instance of the Tick class.
Public constructor Tick(DateTime, byte, int, double, int) Initializes a new instance of the Tick class.
Public constructor Tick(Tick) Initializes a new instance of the Tick class.
Top
Name Description
Public property DateTime Gets or sets the date time. (inherited from Event).
Public property ExchangeDateTime Gets or sets the exchange date time.
Public property Fields
Public property InstrumentId Gets or sets the instrument identifier.
Public property Item(int)
Public property Price Gets or sets the price.
Public property ProviderId Gets or sets the provider identifier.
Public property Size Gets or sets the size.
Public property TypeId
Top
Methods
 
Name Description
Public method Clone()
Public method ToJSON() Returns a JSON formatted String that represents this instance. (inherited from Event).
Public method ToString() Returns a String that represents this instance.
Top

In this article

Definition