fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 522 B
TypeScript
/**
* Indicates request for forex accommodation trade to be executed along with security transaction.
* - Tag: 121
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const ForexReq: Readonly<{
/** Do Not Execute Forex After Security Trade */
readonly DoNotExecuteForexAfterSecurityTrade: "N";
/** Execute Forex After Security Trade */
readonly ExecuteForexAfterSecurityTrade: "Y";
}>;
export type ForexReq = (typeof ForexReq)[keyof typeof ForexReq];