C# 클래스 Encog.App.Quant.Indicators.Indicator

상속: Encog.App.Analyst.CSV.Basic.BaseCachedColumn
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
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.

메소드 상세

Calculate() 공개 추상적인 메소드

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.
리턴 void

Indicator() 공개 메소드

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.
리턴 System

Require() 공개 메소드

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.
리턴 void