FixOrderMassStatusRequest
StockSharp.Fix.Native
Data from OrderMassStatusRequest FIX message.
Implements: IEquatable<FixOrderMassStatusRequest>
Constructors
FixOrderMassStatusRequest
public FixOrderMassStatusRequest(FixId MassStatusReqId, string OrigClOrdId, char? SubscriptionRequestType, string OrdStatus, string Symbol, string SecurityExchange, string Account, bool? IsIncremental, string UserId, SecurityId[] SecurityIds, long? Skip)
fixOrderMassStatusRequest = FixOrderMassStatusRequest(MassStatusReqId, OrigClOrdId, SubscriptionRequestType, OrdStatus, Symbol, SecurityExchange, Account, IsIncremental, UserId, SecurityIds, Skip)
Data from OrderMassStatusRequest FIX message.
- MassStatusReqId
- Mass status request identifier.
- OrigClOrdId
- Original client order identifier filter.
- SubscriptionRequestType
- Subscription request type (0=Snapshot, 1=Subscribe, 2=Unsubscribe).
- OrdStatus
- Order status filter.
- Symbol
- Security code.
- SecurityExchange
- Exchange/board code.
- Account
- Account identifier.
- IsIncremental
- Request incremental updates instead of snapshots.
- UserId
- User identifier for data filtering.
- SecurityIds
- Specific security identifiers for filtering.
- Skip
- Last-seen upstream sequence number — request only data after this point. Used by IMEX dialect to populate ResendRequest.FromSeq, replacing Forwarder-local file persistence with Router-DB persistence.
Properties
Account
public string Account { get; set; }
value = fixOrderMassStatusRequest.Account
fixOrderMassStatusRequest.Account = value
Account identifier.
IsIncremental
public bool? IsIncremental { get; set; }
value = fixOrderMassStatusRequest.IsIncremental
fixOrderMassStatusRequest.IsIncremental = value
Request incremental updates instead of snapshots.
MassStatusReqId
public FixId MassStatusReqId { get; set; }
value = fixOrderMassStatusRequest.MassStatusReqId
fixOrderMassStatusRequest.MassStatusReqId = value
Mass status request identifier.
OrdStatus
public string OrdStatus { get; set; }
value = fixOrderMassStatusRequest.OrdStatus
fixOrderMassStatusRequest.OrdStatus = value
Order status filter.
OrigClOrdId
public string OrigClOrdId { get; set; }
value = fixOrderMassStatusRequest.OrigClOrdId
fixOrderMassStatusRequest.OrigClOrdId = value
Original client order identifier filter.
SecurityExchange
public string SecurityExchange { get; set; }
value = fixOrderMassStatusRequest.SecurityExchange
fixOrderMassStatusRequest.SecurityExchange = value
Exchange/board code.
SecurityIds
public SecurityId[] SecurityIds { get; set; }
value = fixOrderMassStatusRequest.SecurityIds
fixOrderMassStatusRequest.SecurityIds = value
Specific security identifiers for filtering.
Skip
public long? Skip { get; set; }
value = fixOrderMassStatusRequest.Skip
fixOrderMassStatusRequest.Skip = value
Last-seen upstream sequence number — request only data after this point. Used by IMEX dialect to populate ResendRequest.FromSeq, replacing Forwarder-local file persistence with Router-DB persistence.
SubscriptionRequestType
public char? SubscriptionRequestType { get; set; }
value = fixOrderMassStatusRequest.SubscriptionRequestType
fixOrderMassStatusRequest.SubscriptionRequestType = value
Subscription request type (0=Snapshot, 1=Subscribe, 2=Unsubscribe).
Symbol
public string Symbol { get; set; }
value = fixOrderMassStatusRequest.Symbol
fixOrderMassStatusRequest.Symbol = value
Security code.
UserId
public string UserId { get; set; }
value = fixOrderMassStatusRequest.UserId
fixOrderMassStatusRequest.UserId = value
User identifier for data filtering.