fix-client
Version:
A minimalist FIX API client
51 lines (50 loc) • 1.13 kB
JavaScript
const Market = '1';
const Limit = '2';
const Stop = '3';
const StopLimit = '4';
const MarketOnClose = '5';
const WithOrWithout = '6';
const LimitOrBetter = '7';
const LimitWithOrWithout = '8';
const OnBasis = '9';
const OnClose = 'A';
const LimitOnClose = 'B';
const ForexMarket = 'C';
const PreviouslyQuoted = 'D';
const PreviouslyIndicated = 'E';
const ForexLimit = 'F';
const ForexSwap = 'G';
const ForexPreviouslyQuoted = 'H';
const Funari = 'I';
const MarketIfTouched = 'J';
const MarketWithLeftOverAsLimit = 'K';
const PreviousFundValuationPoint = 'L';
const NextFundValuationPoint = 'M';
const Pegged = 'P';
const CounterOrderSelection = 'Q';
module.exports = {
Market,
Limit,
Stop,
StopLimit,
MarketOnClose,
WithOrWithout,
LimitOrBetter,
LimitWithOrWithout,
OnBasis,
OnClose,
LimitOnClose,
ForexMarket,
PreviouslyQuoted,
PreviouslyIndicated,
ForexLimit,
ForexSwap,
ForexPreviouslyQuoted,
Funari,
MarketIfTouched,
MarketWithLeftOverAsLimit,
PreviousFundValuationPoint,
NextFundValuationPoint,
Pegged,
CounterOrderSelection
}