IndicatorContainer

StockSharp.Algo.Indicators

The container, storing indicators data.

Реализует: IIndicatorContainer

Свойства

Count : int

Gets the count of pending messages.

Методы

AddValue(IIndicatorValue, IIndicatorValue)

Add new values.

input
The input value of the indicator.
result
The resulting value of the indicator.
ClearValues()

To delete all values of the indicator.

GetValue(int) : ValueTuple<IIndicatorValue, IIndicatorValue>

To get the indicator value by the index.

index
The sequential number of value from the end.

Возвращает: Input and resulting values of the indicator.

GetValues() : IEnumerable<ValueTuple<IIndicatorValue, IIndicatorValue>>

To get all values of the identifier.

Возвращает: All values of the identifier. The empty set, if there are no values.