C# Класс Encog.App.Quant.Indicators.Indicator

Наследование: Encog.App.Analyst.CSV.Basic.BaseCachedColumn
Показать файл Открыть проект

Открытые методы

Метод Описание
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