fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
23 lines (22 loc) • 640 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;
}>;