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
2
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.1.0
  • npm
  • Socket score

Version published
Weekly downloads
15
decreased by-58.33%
Maintainers
2
Weekly downloads
 
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 and optionally provide a custom logger implementation.

import BBGMarketData, {
  BBGMarketDataAPI,
  HistoricalDataRequestArguments,
  HistoricalDataRequest,
  ResponseData,
  HistoricalData,
  Session,
  PeriodicityAdjustment,
  PeriodicitySelection,
  FillOptions,
  FillMethod
} from "@glue42/bbg-market-data";
import Glue from "@glue42/desktop";

Glue().then(glue => {
  const bbgMarketData: BBGMarketDataAPI = BBGMarketData(glue.interop, {
    debug: false
  });

  // Start using the library.
});

Example (creating a HistoricalData request):

const requestArgs: HistoricalDataRequestArguments = {
  securities: ["IBM US Equity"],
  fields: ["PX_LAST", "OPEN"],
  startDate: "20060101",
  endDate: "20061231",
  periodicityAdjustment: PeriodicityAdjustment.ACTUAL,
  periodicitySelection: PeriodicitySelection.MONTHLY,
  maxDataPoints: 100,
  returnEids: true,
  nonTradingDayFillOption: FillOptions.NON_TRADING_WEEKDAYS,
  nonTradingDayFillMethod: FillMethod.PREVIOUS_VALUE
};

const request: HistoricalDataRequest = bbgMarketData.createHistoricalDataRequest(
  requestArgs
);

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

// Send the actual request to Bloomberg.
// The API will create a new session which will close immediately after the request completes, fails or is closed.
request
  .open({ session: Session.CreateNew })
  .then((response: HistoricalData[] | undefined) => {
    // Handle aggregated response.
  });

Keywords

FAQs

Package last updated on 28 May 2023

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