fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 409 B
TypeScript
/**
* Broker's side of advertised trade
* - Tag: 4
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const AdvSide: Readonly<{
/** Buy */
readonly Buy: "B";
/** Sell */
readonly Sell: "S";
/** Trade */
readonly Trade: "T";
/** Cross */
readonly Cross: "X";
}>;
export type AdvSide = (typeof AdvSide)[keyof typeof AdvSide];