UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

30 lines (29 loc) 937 B
/** * Result of Trade Request * - Tag: 749 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TradeRequestResult: Readonly<{ /** Successful (default) */ readonly Successful: 0; /** Invalid or unknown instrument */ readonly InvalidOrUnknownInstrument: 1; /** Invalid type of trade requested */ readonly InvalidTypeOfTradeRequested: 2; /** Invalid parties */ readonly InvalidParties: 3; /** Invalid transport type requested */ readonly InvalidTransportTypeRequested: 4; /** Invalid destination requested */ readonly InvalidDestinationRequested: 5; /** TradeRequestType not supported */ readonly TradeRequestTypeNotSupported: 8; /** Not authorized */ readonly NotAuthorized: 9; /** Other */ readonly Other: 99; }>; export type TradeRequestResult = (typeof TradeRequestResult)[keyof typeof TradeRequestResult];