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