fixparser-no-logging
Version:
FIX 5.0SP2 Parser
18 lines (17 loc) • 548 B
text/typescript
/*
* fixparser
* https://gitlab.com/logotype/fixparser.git
*
* Copyright 2021 Victor Norgren
* Released under the MIT license
*/
export const Day: string = '0';
export const GoodTillCancel: string = '1';
export const AtTheOpening: string = '2';
export const ImmediateOrCancel: string = '3';
export const FillOrKill: string = '4';
export const GoodTillCrossing: string = '5';
export const GoodTillDate: string = '6';
export const AtTheClose: string = '7';
export const GoodThroughCrossing: string = '8';
export const AtCrossing: string = '9';