@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.
24 lines (23 loc) • 550 B
TypeScript
/**
* IntraDay tick data for the requested security, period and event type.
*/
export interface TickData {
time: any;
type: string;
size: number;
value: any;
conditionCodes: string;
}
/**
* Represents the result from an `IntraDayTickRequest`.
*/
export interface IntraDayTickData {
/**
* IntraDay Tick data for the requested security, period and event type.
*/
tickData: TickData[];
/**
* Entitlement identifiers associated with the security.
*/
eidData: number[];
}