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.

27 lines (26 loc) 591 B
/** * Bar data for the requested security, period and event type. */ export interface BarTickData { time: any; open: number; high: number; low: number; close: number; volume: number; numEvents: number; value: any; } /** * Represents the result from an `IntraDayBarRequest`. */ export interface IntraDayBarData { /** * Bar data for the requested security, period and event type. */ barTickData: BarTickData[]; /** * Entitlement identifiers associated with the security. */ eidData: number[]; }