Table of Contents

Interface IIndicatorContainer

Namespace
StockSharp.Algo.Indicators
Assembly
StockSharp.Algo.dll

The interface of the container, storing indicator data.

public interface IIndicatorContainer
Extension Methods

Properties

Count

The current number of saved values.

int Count { get; }

Property Value

int

Methods

AddValue(IIndicatorValue, IIndicatorValue)

Add new values.

void AddValue(IIndicatorValue input, IIndicatorValue result)

Parameters

input IIndicatorValue

The input value of the indicator.

result IIndicatorValue

The resulting value of the indicator.

ClearValues()

To delete all values of the indicator.

void ClearValues()

GetValue(int)

To get the indicator value by the index.

(IIndicatorValue input, IIndicatorValue output) GetValue(int index)

Parameters

index int

The sequential number of value from the end.

Returns

(IIndicatorValue input, IIndicatorValue output)

Input and resulting values of the indicator.

GetValues()

To get all values of the identifier.

IEnumerable<(IIndicatorValue input, IIndicatorValue output)> GetValues()

Returns

IEnumerable<(IIndicatorValue input, IIndicatorValue output)>

All values of the identifier. The empty set, if there are no values.