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

This class is used to describe the type of financial data that is needed. Each piece of data can be used for input, prediction or both. If used for input, it will be used as data to help predict. If used for prediction, it will be one of the values predicted. It is possible, and quite common, to use data from both input and prediction.
Inheritance: Encog.Neural.NeuralData.Temporal.TemporalDataDescription
ファイルを表示 Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
MarketDataDescription ( TickerSymbol ticker, MarketDataType dataType, Type type, IActivationFunction activationFunction, bool input, bool predict ) : System

Construct a MarketDataDescription item.

MarketDataDescription ( TickerSymbol ticker, MarketDataType dataType, Type type, bool input, bool predict ) : System

Construct a MarketDataDescription item.

MarketDataDescription ( TickerSymbol ticker, MarketDataType dataType, bool input, bool predict ) : System

Construct a MarketDataDescription item.

Method Details

MarketDataDescription() public method

Construct a MarketDataDescription item.
public MarketDataDescription ( TickerSymbol ticker, MarketDataType dataType, Type type, IActivationFunction activationFunction, bool input, bool predict ) : System
ticker TickerSymbol The ticker symbol to use.
dataType MarketDataType The data type needed.
type System.Type The normalization type.
activationFunction IActivationFunction The activation function to apply to this data, can be null.
input bool Is this field used for input?
predict bool Is this field used for prediction?
return System

MarketDataDescription() public method

Construct a MarketDataDescription item.
public MarketDataDescription ( TickerSymbol ticker, MarketDataType dataType, Type type, bool input, bool predict ) : System
ticker TickerSymbol The ticker symbol to use.
dataType MarketDataType The data type needed.
type System.Type The normalization type.
input bool Is this field used for input?
predict bool Is this field used for prediction?
return System

MarketDataDescription() public method

Construct a MarketDataDescription item.
public MarketDataDescription ( TickerSymbol ticker, MarketDataType dataType, bool input, bool predict ) : System
ticker TickerSymbol The ticker symbol to use.
dataType MarketDataType The data type needed.
input bool Is this field used for input?
predict bool Is this field used for prediction?
return System