C# Class Encog.App.Quant.Indicators.Indicator

Inheritance: Encog.App.Analyst.CSV.Basic.BaseCachedColumn
Mostrar archivo Open project: encog/encog-silverlight-core

Public Methods

Method Description
Calculate ( BaseCachedColumn>.IDictionary data, int length ) : void

Calculate this indicator.

Indicator ( String name, bool input, bool output ) : System

Construct the indicator.

Require ( BaseCachedColumn>.IDictionary theData, String item ) : void

Require a specific type of underlying data.

Method Details

Calculate() public abstract method

Calculate this indicator.
public abstract Calculate ( BaseCachedColumn>.IDictionary data, int length ) : void
data BaseCachedColumn>.IDictionary The data available to this indicator.
length int The length of data to use.
return void

Indicator() public method

Construct the indicator.
public Indicator ( String name, bool input, bool output ) : System
name String The indicator name.
input bool Is this indicator used to predict?
output bool Is this indicator what we are trying to predict.
return System

Require() public method

Require a specific type of underlying data.
public Require ( BaseCachedColumn>.IDictionary theData, String item ) : void
theData BaseCachedColumn>.IDictionary The data available.
item String The type of data we are looking for.
return void