Table of Contents

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

double

Bid

Gets/sets the bid.

public double Bid { get; set; }

Property Value

double

Error

Gets/sets an error code.

public string Error { get; set; }

Property Value

string

High

Gets/sets the high.

public double High { get; set; }

Property Value

double

Last

Gets/sets the last sale.

public double Last { get; set; }

Property Value

double

Low

Gets/sets the low.

public double Low { get; set; }

Property Value

double

NetChange

Gets the net change.

public double NetChange { get; }

Property Value

double

NetChangePercent

Gets the net change as a percent of the previous.

public double NetChangePercent { get; }

Property Value

double

Open

Gets/sets the open.

public double Open { get; set; }

Property Value

double

OpenInterest

Gets/sets the open interest.

public double OpenInterest { get; set; }

Property Value

double

Previous

Gets/sets the previous close.

public double Previous { get; set; }

Property Value

double

Symbol

Gets/sets the symbol.

public string Symbol { get; set; }

Property Value

string

Timestamp

Gets/sets the timestamp.

public DateTime Timestamp { get; set; }

Property Value

DateTime

Volume

Gets/sets the volume.

public double Volume { get; set; }

Property Value

double

Methods

ToString()

Returns a string representation of this quote object.

public override string ToString()

Returns

string