fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 515 B
TypeScript
/**
* Code to represent the type of trade.
* - Tag: 418
* - FIX Specification type: char
* - FIX Specification version: FIX42
* - Mapped type: string
* @readonly
* @public
*/
export declare const TradeType: Readonly<{
/** Agency */
readonly Agency: "A";
/** VWAP Guarantee */
readonly VWAPGuarantee: "G";
/** Guaranteed Close */
readonly GuaranteedClose: "J";
/** Risk Trade */
readonly RiskTrade: "R";
}>;
export type TradeType = (typeof TradeType)[keyof typeof TradeType];