QuotingInput
StockSharp.Algo.Strategies.Quoting
Input data for the quoting engine.
Properties
Asks
public QuoteChange[] Asks { get; set; }
value = quotingInput.Asks
quotingInput.Asks = value
Ask quotes from order book.
BestAskPrice
public decimal? BestAskPrice { get; set; }
value = quotingInput.BestAskPrice
quotingInput.BestAskPrice = value
Best ask price from order book.
BestBidPrice
public decimal? BestBidPrice { get; set; }
value = quotingInput.BestBidPrice
quotingInput.BestBidPrice = value
Best bid price from order book.
Bids
public QuoteChange[] Bids { get; set; }
value = quotingInput.Bids
quotingInput.Bids = value
Bid quotes from order book.
CurrentOrder
public OrderState CurrentOrder { get; set; }
value = quotingInput.CurrentOrder
quotingInput.CurrentOrder = value
Current order state (if any).
CurrentTime
public DateTime CurrentTime { get; set; }
value = quotingInput.CurrentTime
quotingInput.CurrentTime = value
Current time.
IsCancellationAllowed
public bool IsCancellationAllowed { get; set; }
value = quotingInput.IsCancellationAllowed
quotingInput.IsCancellationAllowed = value
Whether cancellation is allowed.
IsTradingAllowed
public bool IsTradingAllowed { get; set; }
value = quotingInput.IsTradingAllowed
quotingInput.IsTradingAllowed = value
Whether trading is allowed.
LastTradePrice
public decimal? LastTradePrice { get; set; }
value = quotingInput.LastTradePrice
quotingInput.LastTradePrice = value
Last trade price.
LastTradeVolume
public decimal? LastTradeVolume { get; set; }
value = quotingInput.LastTradeVolume
quotingInput.LastTradeVolume = value
Last trade volume.
Position
public decimal Position { get; set; }
value = quotingInput.Position
quotingInput.Position = value
Current position.