UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

36 lines (35 loc) 1.4 kB
/** * Specifies scope of Order Mass Cancel Request. * - Tag: 530 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const MassCancelRequestType: Readonly<{ /** 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 CFICode */ 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 CancelOrdersForSecurityIssuer: "B"; /** Cancel orders for an issuer of underlying security */ readonly CancelForIssuerOfUnderlyingSecurity: "C"; }>; export type MassCancelRequestType = (typeof MassCancelRequestType)[keyof typeof MassCancelRequestType];