Class QuotingInput.OrderState
- Namespace
- StockSharp.Algo.Strategies.Quoting
- Assembly
- StockSharp.Algo.dll
Current order state information.
public class QuotingInput.OrderState
- Inheritance
-
QuotingInput.OrderState
- Inherited Members
- Extension Methods
Constructors
OrderState()
public OrderState()
Properties
IsPending
Whether order is pending (being registered/cancelled).
public bool IsPending { get; set; }
Property Value
Price
Order price.
public decimal? Price { get; set; }
Property Value
Side
Order side.
public Sides Side { get; set; }
Property Value
Type
Order type.
public OrderTypes? Type { get; set; }
Property Value
Volume
Order balance (remaining volume).
public decimal Volume { get; set; }