Table of Contents

Interface IStatisticParameter

Namespace
StockSharp.Algo.Statistics
Assembly
StockSharp.Algo.dll

The interface, describing statistic parameter.

public interface IStatisticParameter : IPersistable, INotifyPropertyChanged
Inherited Members
Extension Methods

Properties

Category

Category.

string Category { get; }

Property Value

string

Description

The parameter description.

string Description { get; }

Property Value

string

DisplayName

The displayed parameter name.

string DisplayName { get; }

Property Value

string

Name

Parameter name.

string Name { get; }

Property Value

string

Order

Order.

int Order { get; }

Property Value

int

Type

Type.

StatisticParameterTypes Type { get; }

Property Value

StatisticParameterTypes

Value

The current value of the parameter.

object Value { get; }

Property Value

object

ValueType

Value type.

Type ValueType { get; }

Property Value

Type

Methods

Init(object)

Init by initial value.

void Init(object beginValue)

Parameters

beginValue object

Initial value.

Reset()

To reset the parameter value.

void Reset()

Events

ValueChanged

Value change event.

event Action ValueChanged

Event Type

Action