MatchResult

StockSharp.MatchingEngine

Resultado da correspondência da ordem.

Propriedades

FinalState
public OrderStates FinalState { get; set; }
value = matchResult.FinalState
matchResult.FinalState = value

Estado de ordem final.

HasTrades
public bool HasTrades { get; }
value = matchResult.HasTrades

Se qualquer troca foi executada.

IsFullyMatched
public bool IsFullyMatched { get; }
value = matchResult.IsFullyMatched

Se a ordem foi totalmente compatível.

IsRejected
public bool IsRejected { get; set; }
value = matchResult.IsRejected
matchResult.IsRejected = value

Se a ordem foi rejeitada (e.g., cruzamento apenas pós-).

MatchedOrders
public IReadOnlyList<EmulatorOrder> MatchedOrders { get; set; }
value = matchResult.MatchedOrders
matchResult.MatchedOrders = value

Ordens que foram compensadas (para notificação).

Order
public EmulatorOrder Order { get; set; }
value = matchResult.Order
matchResult.Order = value

Ordem que foi igualada.

RejectionReason
public string RejectionReason { get; set; }
value = matchResult.RejectionReason
matchResult.RejectionReason = value

Razão de rejeição, se rejeitado.

RemainingVolume
public decimal RemainingVolume { get; set; }
value = matchResult.RemainingVolume
matchResult.RemainingVolume = value

O volume restante após a correspondência.

ShouldPlaceInBook
public bool ShouldPlaceInBook { get; set; }
value = matchResult.ShouldPlaceInBook
matchResult.ShouldPlaceInBook = value

Se a ordem deve ser colocada no livro de ordem.

Trades
public IReadOnlyList<MatchTrade> Trades { get; set; }
value = matchResult.Trades
matchResult.Trades = value

Lista de transações executadas.