UNPKG
@sotatech/node-fixjs
Version:
latest (0.0.30)
0.0.30
0.0.25
0.0.22
0.0.21
0.0.20
0.0.11
0.0.10
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
FIX Protocol Parser for Node.js
github.com/sotaaaaa/node-fixparser
sotaaaaa/node-fixparser
@sotatech/node-fixjs
/
types
/
fieldtypes
/
AdvSide.d.ts
17 lines
(16 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** * Broker's side of advertised trade * tag: 4 *
@readonly
*
@enum
{string} (char) */
export
declare
enum
AdvSide
{
/** Buy */
Buy =
"B"
,
/** Sell */
Sell =
"S"
,
/** Trade */
Trade =
"T"
,
/** Cross */
Cross =
"X"
}