Bid Class

A tick with the best bid price and size
[DataContract()] 
public class Bid : Tick
This language is not supported or no code example is available.
[DataContract()] 
public ref class Bid : public Tick^
This language is not supported or no code example is available.
public  
DataContract() 
class Bid 
extends Tick
This language is not supported or no code example is available.
Name Description
Public constructor Bid() Initializes a new instance of the Bid class.
Public constructor Bid(Bid) Initializes a new instance of the Bid class.
Public constructor Bid(DateTime, DateTime, byte, int, double, int) Initializes a new instance of the Bid class.
Public constructor Bid(DateTime, byte, int, double, int) Initializes a new instance of the Bid class.
Public constructor Bid(Tick) Initializes a new instance of the Bid 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. (inherited from Tick).
Public property Fields (inherited from Tick).
Public property InstrumentId Gets or sets the instrument identifier. (inherited from Tick).
Public property Item(int) (inherited from Tick).
Public property Price Gets or sets the price. (inherited from Tick).
Public property ProviderId Gets or sets the provider identifier. (inherited from Tick).
Public property Size Gets or sets the size. (inherited from Tick).
Public property TypeId Gets the type identifier.
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
Fields
 
Name Description
Internal protected (Protected Friend) field dateTime (inherited from Event).
Internal protected (Protected Friend) field exchangeDateTime (inherited from Tick).
Internal protected (Protected Friend) field instrumentId (inherited from Tick).
Internal protected (Protected Friend) field price (inherited from Tick).
Internal protected (Protected Friend) field providerId (inherited from Tick).
Internal protected (Protected Friend) field size (inherited from Tick).
Top
Remarks
 
The bid price represents the maximum price that a buyer or buyers are willing to pay for a security.

In this article

Definition