UNPKG

@glue42/bbg-market-data

Version:

A high-level API that wraps existing Glue42 Bloomberg Bridge Market Data interop methods. The API is based on the jBloomberg open source wrapper.

38 lines 1.37 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IntraDayEventType = void 0; /** * The event type of the requested data. */ var IntraDayEventType; (function (IntraDayEventType) { /** * Corresponds to `LAST_PRICE`. */ IntraDayEventType["TRADE"] = "TRADE"; /** * Depending on the Exchange, BID ticks returned as `BID`, `BID_BEST` or `BEST_BID`. */ IntraDayEventType["BID"] = "BID"; /** * Depending on the Exchange, ASK ticks returned as `ASK`, `ASK_BEST` or `BEST_ASK`. */ IntraDayEventType["ASK"] = "ASK"; /** * Depending on the Exchange, BID ticks returned as `BID`, `BID_BEST` or `BEST_BID`. */ IntraDayEventType["BID_BEST"] = "BID_BEST"; /** * Depending on the Exchange, ASK ticks returned as `ASK`, `ASK_BEST` or `BEST_ASK`. */ IntraDayEventType["ASK_BEST"] = "ASK_BEST"; /** * Depending on the Exchange, BID ticks returned as `BID`, `BID_BEST` or `BEST_BID`. */ IntraDayEventType["BEST_BID"] = "BEST_BID"; /** * Depending on the Exchange, ASK ticks returned as `ASK`, `ASK_BEST` or `BEST_ASK`. */ IntraDayEventType["BEST_ASK"] = "BEST_ASK"; })(IntraDayEventType = exports.IntraDayEventType || (exports.IntraDayEventType = {})); //# sourceMappingURL=request-args.js.map