fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
25 lines (24 loc) • 787 B
TypeScript
/**
* Result of Request for Positions.
* - Tag: 728
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PosReqResult: Readonly<{
/** Valid request */
readonly ValidRequest: 0;
/** Invalid or unsupported request */
readonly InvalidOrUnsupportedRequest: 1;
/** No positions found that match criteria */
readonly NoPositionsFoundThatMatchCriteria: 2;
/** Not authorized to request positions */
readonly NotAuthorizedToRequestPositions: 3;
/** Request for position not supported */
readonly RequestForPositionNotSupported: 4;
/** Other
Use Text(58) for further explanation. */
readonly Other: 99;
}>;
export type PosReqResult = (typeof PosReqResult)[keyof typeof PosReqResult];