Table of Contents

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

QuoteChange[]

BestAskPrice

Best ask price from order book.

public decimal? BestAskPrice { get; set; }

Property Value

decimal?

BestBidPrice

Best bid price from order book.

public decimal? BestBidPrice { get; set; }

Property Value

decimal?

Bids

Bid quotes from order book.

public QuoteChange[] Bids { get; set; }

Property Value

QuoteChange[]

CurrentOrder

Current order state (if any).

public QuotingInput.OrderState CurrentOrder { get; set; }

Property Value

QuotingInput.OrderState

CurrentTime

Current time.

public DateTimeOffset CurrentTime { get; set; }

Property Value

DateTimeOffset

IsCancellationAllowed

Whether cancellation is allowed.

public bool IsCancellationAllowed { get; set; }

Property Value

bool

IsTradingAllowed

Whether trading is allowed.

public bool IsTradingAllowed { get; set; }

Property Value

bool

LastTradePrice

Last trade price.

public decimal? LastTradePrice { get; set; }

Property Value

decimal?

Position

Current position.

public decimal Position { get; set; }

Property Value

decimal