Table of Contents

Class IndicatorValue

Namespace
StockSharp.Algo.Export
Assembly
StockSharp.Algo.dll

Indicator value with time.

public class IndicatorValue : IServerTimeMessage, ISecurityIdMessage
Inheritance
IndicatorValue
Implements
Inherited Members
Extension Methods

Constructors

IndicatorValue()

public IndicatorValue()

Properties

SecurityId

Security ID.

public SecurityId SecurityId { get; set; }

Property Value

SecurityId

Time

Value time.

public DateTimeOffset Time { get; set; }

Property Value

DateTimeOffset

Value

Value.

public IIndicatorValue Value { get; set; }

Property Value

IIndicatorValue

Value1

Converted to decimal type value.

public decimal? Value1 { get; }

Property Value

decimal?

Value2

Converted to decimal type value.

public decimal? Value2 { get; }

Property Value

decimal?

Value3

Converted to decimal type value.

public decimal? Value3 { get; }

Property Value

decimal?

Value4

Converted to decimal type value.

public decimal? Value4 { get; }

Property Value

decimal?

ValueAsDecimal

Converted to decimal type value.

[Obsolete("Use Value1 property.")]
public decimal? ValueAsDecimal { get; }

Property Value

decimal?

ValuesAsDecimal

Converted to decimal type values.

public IEnumerable<decimal?> ValuesAsDecimal { get; }

Property Value

IEnumerable<decimal?>