Class QuotingInput
- Namespace
- StockSharp.Algo.Strategies.Quoting
- Assembly
- StockSharp.Algo.dll
Input data for the quoting engine.
public class QuotingInput
- Inheritance
-
QuotingInput
- Inherited Members
- Extension Methods
Constructors
QuotingInput()
public QuotingInput()
Properties
Asks
Ask quotes from order book.
public QuoteChange[] Asks { get; set; }
Property Value
BestAskPrice
Best ask price from order book.
public decimal? BestAskPrice { get; set; }
Property Value
BestBidPrice
Best bid price from order book.
public decimal? BestBidPrice { get; set; }
Property Value
Bids
Bid quotes from order book.
public QuoteChange[] Bids { get; set; }
Property Value
CurrentOrder
Current order state (if any).
public QuotingInput.OrderState CurrentOrder { get; set; }
Property Value
CurrentTime
Current time.
public DateTimeOffset CurrentTime { get; set; }
Property Value
IsCancellationAllowed
Whether cancellation is allowed.
public bool IsCancellationAllowed { get; set; }
Property Value
IsTradingAllowed
Whether trading is allowed.
public bool IsTradingAllowed { get; set; }
Property Value
LastTradePrice
Last trade price.
public decimal? LastTradePrice { get; set; }
Property Value
Position
Current position.
public decimal Position { get; set; }