Interface ICommissionManager
- Namespace
- StockSharp.Algo.Commissions
- Assembly
- StockSharp.Algo.dll
The commission calculating manager interface.
public interface ICommissionManager : IPersistable
- Extension Methods
Properties
Commission
Total commission.
decimal Commission { get; }
Property Value
Rules
The list of commission calculating rules.
ISynchronizedCollection<ICommissionRule> Rules { get; }
Property Value
- ISynchronizedCollection<ICommissionRule>
Methods
Process(Message)
To calculate commission.
decimal? Process(Message message)
Parameters
message
MessageThe message containing the information about the order or own trade.
Returns
Reset()
To reset the state.
void Reset()