fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 704 B
TypeScript
/**
* Specifies the type of limit check message.
* - Tag: 2321
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RiskLimitCheckType: Readonly<{
/** Submit
Indicates a submission for a limit check. The RiskLimitCheckTransType(2320) indicates whether the submission is a new request, a cancel or replace/amend of a prior submission. */
readonly Submit: 0;
/** Limit consumed
Indicates that the limit reserved by a prior request has been used or consumed by a transaction that occurred. */
readonly LimitConsumed: 1;
}>;
export type RiskLimitCheckType = (typeof RiskLimitCheckType)[keyof typeof RiskLimitCheckType];