UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 495 B
/** * Type of risk limit information. * - Tag: 1760 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const RiskLimitRequestType: Readonly<{ /** Definitions(Default) */ readonly Definitions: 1; /** Utilization */ readonly Utilization: 2; /** Definitions and utilization */ readonly DefinitionsAndUtilizations: 3; }>; export type RiskLimitRequestType = (typeof RiskLimitRequestType)[keyof typeof RiskLimitRequestType];