fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
36 lines (35 loc) • 1.3 kB
TypeScript
/**
* Specifies scope of Order Mass Action Request.
* - Tag: 1374
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MassActionScope: Readonly<{
/** All orders for a security */
readonly AllOrdersForASecurity: 1;
/** All orders for an underlying security */
readonly AllOrdersForAnUnderlyingSecurity: 2;
/** All orders for a product */
readonly AllOrdersForAProduct: 3;
/** All orders for a CFI Code */
readonly AllOrdersForACFICode: 4;
/** All orders for a security type */
readonly AllOrdersForASecurityType: 5;
/** All orders for a trading session */
readonly AllOrdersForATradingSession: 6;
/** All orders */
readonly AllOrders: 7;
/** All orders for a market */
readonly AllOrdersForAMarket: 8;
/** All orders for a market segment (or multiple segments) */
readonly AllOrdersForAMarketSegment: 9;
/** All orders for a security group */
readonly AllOrdersForASecurityGroup: 10;
/** All orders for an issuer */
readonly CancelForSecurityIssuer: 11;
/** All orders for an issuer of underlying security */
readonly CancelForIssuerOfUnderlyingSecurity: 12;
}>;
export type MassActionScope = (typeof MassActionScope)[keyof typeof MassActionScope];