StopOrderInfo

StockSharp.MatchingEngine

Stop order information.

Propiedades

BestSeenPrice : decimal?

Best seen price for trailing stop (max for sell, min for buy).

InvertTrigger : bool

When , trigger logic is inverted (TakeProfit mode): Buy triggers when price <= StopPrice, Sell triggers when price >= StopPrice.

IsLimitPricePercent : bool

When , LimitPrice is a percent of StopPrice; the absolute limit price is computed at trigger time (Buy: stop*(1+pct/100), Sell: stop*(1-pct/100)).

IsTrailing : bool

Whether this is a trailing stop.

IsTrailingOffsetPercent : bool

When , TrailingOffset is a percent of the high/low watermark; the stop price is recomputed on each tick as Sell: high*(1-pct/100), Buy: low*(1+pct/100).

LimitPrice : decimal?

Limit price for stop-limit orders. means market order.

PortfolioName : string

Portfolio name.

SecurityId : SecurityId

Security ID.

Side : Sides

Order side.

StopPrice : decimal

Stop activation price.

TrailingOffset : decimal?

Trailing offset from extremum.

TransactionId : long

Transaction ID.

Volume : decimal

Order volume.