Interface IOrderStatisticParameter
- Namespace
- StockSharp.Algo.Statistics
- Assembly
- StockSharp.Algo.dll
The interface, describing statistic parameter, calculated based on orders.
public interface IOrderStatisticParameter : IStatisticParameter, IPersistable, INotifyPropertyChanged
- Inherited Members
- Extension Methods
Methods
CancelFailed(OrderFail)
To add to the parameter an information on error of order cancelling.
void CancelFailed(OrderFail fail)
Parameters
fail
OrderFailError cancelling order.
Changed(Order)
To add to the parameter an information on changed order.
void Changed(Order order)
Parameters
order
OrderThe changed order.
New(Order)
To add to the parameter an information on new order.
void New(Order order)
Parameters
order
OrderNew order.
RegisterFailed(OrderFail)
To add to the parameter an information on error of order registration.
void RegisterFailed(OrderFail fail)
Parameters
fail
OrderFailError registering order.