Class ComplexIndicatorValue
- Namespace
- StockSharp.Algo.Indicators
- Assembly
- StockSharp.BusinessEntities.dll
The complex value of the indicator IComplexIndicator, derived as result of calculation.
public class ComplexIndicatorValue : BaseIndicatorValue, IIndicatorValue, IComparable<IIndicatorValue>, IComparable
- Inheritance
-
ComplexIndicatorValue
- Implements
- Derived
- Inherited Members
- Extension Methods
Remarks
Initializes a new instance of the ComplexIndicatorValue.
Constructors
ComplexIndicatorValue(IComplexIndicator, DateTimeOffset)
The complex value of the indicator IComplexIndicator, derived as result of calculation.
public ComplexIndicatorValue(IComplexIndicator indicator, DateTimeOffset time)
Parameters
indicator
IComplexIndicatorIndicator.
time
DateTimeOffset
Remarks
Initializes a new instance of the ComplexIndicatorValue.
Properties
InnerValues
Embedded values.
public IDictionary<IIndicator, IIndicatorValue> InnerValues { get; }
Property Value
IsEmpty
No indicator value.
public override bool IsEmpty { get; set; }
Property Value
IsFinal
Is the value final (indicator finalizes its value and will not be changed anymore in the given point of time).
public override bool IsFinal { get; set; }
Property Value
this[IIndicator]
Gets or sets a value of inner indicator.
public IIndicatorValue this[IIndicator indicator] { get; set; }
Parameters
indicator
IIndicator
Property Value
Methods
Add(IIndicator, IIndicatorValue)
Add a value of inner indicator.
public virtual void Add(IIndicator indicator, IIndicatorValue value)
Parameters
indicator
IIndicatorvalue
IIndicatorValue
CompareTo(IIndicatorValue)
public override int CompareTo(IIndicatorValue other)
Parameters
other
IIndicatorValue
Returns
FromValues(object[])
Convert to indicator value.
public override void FromValues(object[] values)
Parameters
values
object[]
GetValue<T>(Level1Fields?)
To get the value by the data type.
public override T GetValue<T>(Level1Fields? field)
Parameters
field
Level1Fields?Field specified value source.
Returns
- T
Value.
Type Parameters
T
The data type, operated by indicator.
ToValues()
Convert to primitive values.
public override IEnumerable<object> ToValues()
Returns
- IEnumerable<object>
Primitive values.
TryGet(IIndicator, out IIndicatorValue)
Try get a value of inner indicator.
public bool TryGet(IIndicator indicator, out IIndicatorValue value)
Parameters
indicator
IIndicatorvalue
IIndicatorValue
Returns
- bool
Operation result.