Table of Contents

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

bool

Price

Order price.

public decimal? Price { get; set; }

Property Value

decimal?

Side

Order side.

public Sides Side { get; set; }

Property Value

Sides

Type

Order type.

public OrderTypes? Type { get; set; }

Property Value

OrderTypes?

Volume

Order balance (remaining volume).

public decimal Volume { get; set; }

Property Value

decimal