C# Class Encog.Neural.NeuralData.Market.TickerSymbol

A ticker symbol. Holds the exchange and the symbol.
Exibir arquivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
Equals ( TickerSymbol other ) : bool

Determine if two ticker symbols equal each other.

TickerSymbol ( String symbol ) : System

Construct a ticker symbol with no exchange.

TickerSymbol ( String symbol, String exchange ) : System

Construct a ticker symbol with exchange.

Method Details

Equals() public method

Determine if two ticker symbols equal each other.
public Equals ( TickerSymbol other ) : bool
other TickerSymbol The other ticker symbol.
return bool

TickerSymbol() public method

Construct a ticker symbol with no exchange.
public TickerSymbol ( String symbol ) : System
symbol String The ticker symbol
return System

TickerSymbol() public method

Construct a ticker symbol with exchange.
public TickerSymbol ( String symbol, String exchange ) : System
symbol String The ticker symbol.
exchange String The exchange.
return System