Class Quote
- Namespace
- Balsam.DataServers
- Assembly
- Balsam.Backtester.dll
Encapsulates a current quote
public class Quote
- Inheritance
-
Quote
- Derived
- Inherited Members
- Extension Methods
Properties
Ask
Gets/sets the ask.
public double Ask { get; set; }
Property Value
Bid
Gets/sets the bid.
public double Bid { get; set; }
Property Value
Error
Gets/sets an error code.
public string Error { get; set; }
Property Value
High
Gets/sets the high.
public double High { get; set; }
Property Value
Last
Gets/sets the last sale.
public double Last { get; set; }
Property Value
Low
Gets/sets the low.
public double Low { get; set; }
Property Value
NetChange
Gets the net change.
public double NetChange { get; }
Property Value
NetChangePercent
Gets the net change as a percent of the previous.
public double NetChangePercent { get; }
Property Value
Open
Gets/sets the open.
public double Open { get; set; }
Property Value
OpenInterest
Gets/sets the open interest.
public double OpenInterest { get; set; }
Property Value
Previous
Gets/sets the previous close.
public double Previous { get; set; }
Property Value
Symbol
Gets/sets the symbol.
public string Symbol { get; set; }
Property Value
Timestamp
Gets/sets the timestamp.
public DateTime Timestamp { get; set; }
Property Value
Volume
Gets/sets the volume.
public double Volume { get; set; }
Property Value
Methods
ToString()
Returns a string representation of this quote object.
public override string ToString()