fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
49 lines (48 loc) • 1.37 kB
TypeScript
/**
* Identifies the type of Trading Desk.
Conditionally required when InformationBarrierID(1727) is specified for OATS.
* - Tag: 1033
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const DeskType: Readonly<{
/** Agency */
readonly Agency: "A";
/** Arbitrage */
readonly Arbitrage: "AR";
/** Block trading */
readonly BlockTrading: "B";
/** Convertible desk */
readonly ConvertibleDesk: "C";
/** Central risk books */
readonly CentralRiskBooks: "CR";
/** Derivatives */
readonly Derivatives: "D";
/** Equity capital markets */
readonly EquityCapitalMarkets: "EC";
/** International */
readonly International: "IN";
/** Institutional */
readonly Institutional: "IS";
/** Other */
readonly Other: "O";
/** Preferred trading */
readonly PreferredTrading: "PF";
/** Proprietary */
readonly Proprietary: "PR";
/** Program trading */
readonly ProgramTrading: "PT";
/** Sales */
readonly Sales: "S";
/** Swaps */
readonly Swaps: "SW";
/** Trading desk or system non-market maker */
readonly TradingDeskSystem: "T";
/** Treasury */
readonly Treasury: "TR";
/** Floor Broker */
readonly FloorBroker: "FB";
}>;
export type DeskType = (typeof DeskType)[keyof typeof DeskType];