Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9195663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:40:39+00:00 2026-06-17T21:40:39+00:00

I am using the Bloomberg API to grab data. Currently, I have 3 processes

  • 0

I am using the Bloomberg API to grab data. Currently, I have 3 processes which get data in the typical way as per the developers guide. Something like:

Service refDataService = session.getService("//blp/refdata");
Request request = refDataService.createRequest("ReferenceDataRequest");
request.append("securities", "IBM US Equity");
request.append("fields", "PX_LAST");
cid = session.sendRequest(request, null);

That works. Now I would like to expand the logic to be something more like an update queue. I would like each process to send their Request to an update queue process, which would in turn be responsible for creating the session and service, and then sending the requests. However, I don’t see of any way to create the request without the Service. Also, since the request types (referenceData, historical data, intraday ticks) are so varied and have such different properties, it is not trivial to create a container object which my update queue could read.

Any ideas on how to accomplish this? My ultimate goal is to have a process (I’m calling update queue) which takes in a list of requests, removes any duplicates, and goes out to Bloomberg for the data in 30 second intervals.

Thank you!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T21:40:40+00:00Added an answer on June 17, 2026 at 9:40 pm

    I have updated the jBloomberg library to include tick data. You can submit different types of query to a BloombergSession which acts as a queue. So if you want to submit different types of request you can write something like:

    RequestBuilder<IntradayTickData> tickRequest =
        new IntradayTickRequestBuilder("SPX Index",
            DateTime.now().minusHours(2),
            DateTime.now());
    
    RequestBuilder<IntradayBarData> barRequest =
        new IntradayBarRequestBuilder("SPX Index",
            DateTime.now().minusHours(2),
            DateTime.now())
            .period(5, TimeUnit.MINUTES);
    
    RequestBuilder<ReferenceData> refRequest =
        new ReferenceRequestBuilder("SPX Index", "NAME");
    
    Future<IntradayTickData> ticks = session.submit(tickRequest);
    Future<IntradayBarData> bars = session.submit(barRequest);
    Future<ReferenceData> name = session.submit(refRequest);
    

    More examples available in the javadoc.

    If you need to fetch the same information regularly, you can reuse a builder and use it in combination with a ScheduledThreadPoolExecutor for example.

    Note: the library is still in beta state so don’t use it blindly in an black box that trades automatically!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have excel with the Bloomberg API ( which uses simple calls like =BDP(MS
Using the Bloomberg open API. How can I get the PX_LAST value at a
In bloomberg API, using .net, does anyone know how to get the corporate action
I'm using Bloomberg Java api to download trading data. I need somebody to tell
How do you explicitly request fx forwards as outrights using the bloomberg API? In
we have subscription to Bloomberg data, we use excel to load data from bloomberg
Using rubular.com as a guide, I am trying to get this expression to work
I am having problems to get this work , I using core data to
Bloomberg Open API announced recently - is it just the Bloomberg SDK which had
Using SQL Server 2008 R2 we are looking for a way to select the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.