Table of Contents

Class StatisticParameterRegistry

Namespace
StockSharp.Algo.Statistics
Assembly
StockSharp.Algo.dll
public static class StatisticParameterRegistry
Inheritance
StatisticParameterRegistry
Inherited Members

Properties

All

Return all available parameters.

public static IStatisticParameter[] All { get; }

Property Value

IStatisticParameter[]

Methods

GetByType(StatisticParameterTypes)

Get IStatisticParameter by the specified type.

public static IStatisticParameter GetByType(StatisticParameterTypes type)

Parameters

type StatisticParameterTypes

StatisticParameterTypes

Returns

IStatisticParameter

IStatisticParameter

Init<TParam, TValue>(IStatisticManager, TValue)

Init by initial value.

public static void Init<TParam, TValue>(this IStatisticManager manager, TValue beginValue) where TParam : IStatisticParameter

Parameters

manager IStatisticManager

IStatisticManager

beginValue TValue

Initial value.

Type Parameters

TParam

Type of Parameters.

TValue

Type of ValueType.