fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
27 lines (26 loc) • 881 B
TypeScript
/**
* Used to identify the source of the Account (1) code. This is especially useful if the account is a new account that the Respondent may not have setup yet in their system.
* - Tag: 660
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AcctIDSource: Readonly<{
/** BIC */
readonly BIC: 1;
/** SID Code */
readonly SIDCode: 2;
/** TFM (GSPTA) */
readonly TFM: 3;
/** OMGEO (Alert ID) */
readonly OMGEO: 4;
/** DTCC Code */
readonly DTCCCode: 5;
/** Special Segregated Account ID
Also referred to as SPSA ID. The Special Segregated Account identifier issued by Hong Kong Exchanges and Clearing. */
readonly SPSAID: 6;
/** Other (custom or proprietary) */
readonly Other: 99;
}>;
export type AcctIDSource = (typeof AcctIDSource)[keyof typeof AcctIDSource];