fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
20 lines (19 loc) • 447 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';
}>;