Interface IComplexIndicatorValue
- Namespace
- StockSharp.Algo.Indicators
- Assembly
- StockSharp.BusinessEntities.dll
The complex value of the indicator IComplexIndicator, derived as result of calculation.
public interface IComplexIndicatorValue : IIndicatorValue, IComparable<IIndicatorValue>, IComparable
- Inherited Members
- Extension Methods
Properties
InnerValues
Embedded values.
IDictionary<IIndicator, IIndicatorValue> InnerValues { get; }
Property Value
this[IIndicator]
Gets or sets a value of inner indicator.
IIndicatorValue this[IIndicator indicator] { get; set; }
Parameters
indicator
IIndicator
Property Value
Methods
Add(IIndicator, IIndicatorValue)
Add a value of inner indicator.
void Add(IIndicator indicator, IIndicatorValue value)
Parameters
indicator
IIndicatorvalue
IIndicatorValue
TryGet(IIndicator, out IIndicatorValue)
Try get a value of inner indicator.
bool TryGet(IIndicator indicator, out IIndicatorValue value)
Parameters
indicator
IIndicatorvalue
IIndicatorValue
Returns
- bool
Operation result.