fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 481 B
TypeScript
/**
* The status of risk limits for a party.
* - Tag: 2355
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PartyRiskLimitStatus: Readonly<{
/** Disabled
Risk limits for party is disabled. */
readonly Disabled: 0;
/** Enabled
Risk limits for party is enabled. */
readonly Enabled: 1;
}>;
export type PartyRiskLimitStatus = (typeof PartyRiskLimitStatus)[keyof typeof PartyRiskLimitStatus];