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.

18 lines (17 loc) 391 B
/** * Object describing a financial instrument. */ export interface Instrument { /** * Name of the instrument. */ security: string; /** * Description of the security. */ description: string; } /** * Represents the result returned from a Bloomberg InstrumentList request. */ export declare type InstrumentListData = Array<Instrument>;