fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 481 B
TypeScript
/**
* Designates the account type to be used for the order when submitted to clearing.
* - Tag: 1816
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ClearingAccountType: Readonly<{
/** Customer */
readonly Customer: 1;
/** Firm */
readonly Firm: 2;
/** Market maker */
readonly MarketMaker: 3;
}>;
export type ClearingAccountType = (typeof ClearingAccountType)[keyof typeof ClearingAccountType];