UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

37 lines (36 loc) 1.48 kB
/** * Specifies the action taken by counterparty order handling system as a result of the Order Mass Cancel Request * - Tag: 531 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const MassCancelResponse: Readonly<{ /** Cancel Request Rejected - See MassCancelRejectReason (532) */ readonly CancelRequestRejected: '0'; /** Cancel orders for a security */ readonly CancelOrdersForASecurity: '1'; /** Cancel orders for an underlying security */ readonly CancelOrdersForAnUnderlyingSecurity: '2'; /** Cancel orders for a product */ readonly CancelOrdersForAProduct: '3'; /** Cancel orders for a CFI Code */ readonly CancelOrdersForACFICode: '4'; /** Cancel orders for a security type */ readonly CancelOrdersForASecurityType: '5'; /** Cancel orders for a trading session */ readonly CancelOrdersForATradingSession: '6'; /** Cancel all orders */ readonly CancelAllOrders: '7'; /** Cancel orders for a market */ readonly CancelOrdersForAMarket: '8'; /** Cancel orders for a market segment */ readonly CancelOrdersForAMarketSegment: '9'; /** Cancel orders for a security group */ readonly CancelOrdersForASecurityGroup: 'A'; /** Cancel orders for an issuer */ readonly CancelOrdersForASecuritiesIssuer: 'B'; /** Cancel orders for an issuer of underlying security */ readonly CancelOrdersForIssuerOfUnderlyingSecurity: 'C'; }>;