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