jspurefix
Version:
pure node js fix engine
34 lines (32 loc) • 1.06 kB
text/typescript
import { IStandardHeader } from './set/standard_header'
import { IStandardTrailer } from './set/standard_trailer'
/*
***************************************************************
* Indication of interest messages are used to market *
* merchandise which the broker is buying or selling in either *
* a proprietary or agency capacity. *
***************************************************************
*/
export interface IIOI {
StandardHeader: IStandardHeader
IOIid: number// 23
IOITransType: string// 28
IOIRefID?: number// 26
Symbol: string// 55
SymbolSfx?: string// 65
SecurityID?: string// 48
IDSource?: string// 22
Issuer?: string// 106
SecurityDesc?: string// 107
Side: string// 54
IOIShares: string// 27
Price?: number// 44
Currency?: string// 15
ValidUntilTime?: string// 62
IOIQltyInd?: string// 25
IOIOthSvc?: string// 24
IOINaturalFlag?: string// 130
IOIQualifier?: string// 104
Text?: string// 58
StandardTrailer: IStandardTrailer
}