fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 717 B
TypeScript
/**
* Identifies the type of limit amount expressed in LastLimitAmt(1632) and LimitAmtRemaining(1633).
* - Tag: 1631
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const LimitAmtType: Readonly<{
/** Credit limit */
readonly CreditLimit: 0;
/** Gross position limit */
readonly GrossPositionLimit: 1;
/** Net position limit */
readonly NetPositionLimit: 2;
/** Risk exposure limit */
readonly RiskExposureLimit: 3;
/** Long position limit */
readonly LongPositionLimit: 4;
/** Short position limit */
readonly ShortPositionLimit: 5;
}>;
export type LimitAmtType = (typeof LimitAmtType)[keyof typeof LimitAmtType];