Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@glue42/bbg-market-data

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@glue42/bbg-market-data

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

  • 0.6.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Overview

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

Initialization

The BBGMarketData API depends on the Glue42 Interop API. It also accepts a config object to control logging behavior, optionally provide a custom logger implementation and session settings to overwrite default session options and session identity options.

import BBGMarketData, {
  BBGMarketDataAPI,
  SessionOptions,
  FieldSearchRequestArguments,
  FieldSearchRequest,
  ResponseData,
  FieldSearchData
} from "@glue42/bbg-market-data";
import Glue from "@glue42/desktop";

const glue = await Glue();

const sessionOptions: SessionOptions = {
  connectTimeout: 15000
}
const bbgMarketData: BBGMarketDataAPI = BBGMarketData(glue.interop, {
  debug: true, // Enable only if you need logging.
  sessionSettings: {
    options: sessionOptions
  }
});

// Start using the library.

Example (creating a FieldSearchRequest request):

const requestArgs: FieldSearchRequestArguments = {
  searchSpec: "last price",
  returnFieldDocumentation: true
};

const request: FieldSearchRequest = bbgMarketData.createFieldSearchRequest(
  requestArgs
);

request.onData(function handleResponse(
  response: ResponseData<FieldSearchData>
): void {
  if (response.isLast) {
    // Handle final response
  } else {
    // Handle partial response
  }
});

request.onError(function handleError(error): void {
  // Request failed. Process the error.
});

// Send the actual request to Bloomberg.
request
  .open()
  .then((response: FieldSearchData[] | undefined) => {
    //Request completed. Process aggregated response.
  })
  .catch((error) => {
    // Request failed. Process the error.
  });

Keywords

FAQs

Package last updated on 12 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc