BaseOrderStatisticParameter

StockSharp.Algo.Statistics

The base statistic parameter, calculated based on orders.

Inherits: BaseStatisticParameter<T>

Implements: IOrderStatisticParameter, IStatisticParameter, IPersistable, INotifyPropertyChanged, IDisposable

Constructors

BaseOrderStatisticParameter
protected BaseOrderStatisticParameter(StatisticParameterTypes type)
baseOrderStatisticParameter = BaseOrderStatisticParameter(type)

The base statistic parameter, calculated based on orders.

type
Type

Methods

CancelFailed
public virtual void CancelFailed(OrderFail fail)
baseOrderStatisticParameter.CancelFailed(fail)

To add to the parameter an information on error of order cancelling.

fail
Error cancelling order.
Changed
public virtual void Changed(Order order)
baseOrderStatisticParameter.Changed(order)

To add to the parameter an information on changed order.

order
The changed order.
New
public virtual void New(Order order)
baseOrderStatisticParameter.New(order)

To add to the parameter an information on new order.

order
New order.
RegisterFailed
public virtual void RegisterFailed(OrderFail fail)
baseOrderStatisticParameter.RegisterFailed(fail)

To add to the parameter an information on error of order registration.

fail
Error registering order.