Questions tagged [pdblp]

26 questions
0
votes
0 answers

Grabbing data from a bloomberg terminal on python

I am familiar with using xbbg and blp in python to grab bloomberg data for certain securities. I am now trying to grab a list of all active SPACS under SPAC monitor (SPAX). Does anyone know what function would be most appropriate to do this?
0
votes
1 answer

blpapi IntradayTickRequest python

I am using the pdblp Python wrapper to query historical daily data from Bloomberg. Based on the package documentation and the post in Python Bloomberg API pdblp intraday request it is not possible to use the pdblp package to query intraday…
antifragile
  • 83
  • 1
  • 8
0
votes
1 answer

pdblp: bulkref start date override

I'm trying to query release dates for a ticker using pdblp. This is my attempt: with pdblp.bopen() as c: c.bulkref('AUM3 Index', 'ECO_RELEASE_DT_LIST') But the results I'm getting are between Jan 2019 and Dec 2020. How can I get information…
0
votes
0 answers

Tick data Bloomberg

I am trying to extract tick data of NQH0 Index using pdblp. How should I change the code below to get data by minutes and seconds.. import pdblp con = pdblp.BCon().start() con.bdh("NQH0 Index", "PX_LAST", "20140604", "20140610")
Ali
  • 33
  • 1
  • 6
0
votes
1 answer

Python / pdblp: Easiest way to pull a single historical request?

I have recently started using the pdblp module documented here. However, I find myself spending a lot of time trying to just manipulate the dataframes. For example, the following code gives: import pdblp as bbg con = bbg.BCon(port=8194,…
Sam Harper
  • 61
  • 1
  • 3
  • 10
0
votes
2 answers

Python: How to Import a folder as a module

I am new to Python so bear with me. I have recently download the pdblp module in a zip form. I then made some amendments that were needed to get through specific requests. So I have this folder, is there a way where I normally write Import pdblp…
Sam Harper
  • 61
  • 1
  • 3
  • 10
0
votes
0 answers

pdblp package is giving "No module named _internal"

After importing pdblp package I'm getting an error that is described below. I have seen other questions about similar issues with blpapi issues but none of the solutions have worked. I moved blpapi_64.dll and .lib into working directory from the…
0
votes
0 answers

what do i need to use dblp data set with sparql engine, how to set up the data with the engine

I want to understand the process o using dblp dataset with sparql engine. can anyone hep with the steps /not the queries I downloaded the dblp data set but I don't know how to connect it with sparql engine
Sabrina
  • 21
  • 4
0
votes
1 answer

BDH formula not taking an external variable

I want to use an external date variable to be used in the bdh formula of the pdblp package. But for some reason .format() is not working in this case. startdate = '20130101' df1 = con.bdh(['FV1 Comdty', 'TY1 Comdty'], 'FUT_EQV_DUR_NOTL', '{}',…
0
votes
2 answers

pdblp.BCon.bdh usage. inserting an array as the "list" argument

The usage for con.bdh is con.bdh('SPY US Equity', ['PX_LAST', 'VOLUME'], '20150629', '20150630', longdata=True) I would like to get PX_LAST and VOLUME for a list of securities that I have on an array (strings with tickers). When I try to substitute…
itutle
  • 3
  • 3
-1
votes
1 answer

Pulling BB prices from a CSV list of tickers in Python

I am new in Python.. I am trying to pull the latest prices using PX_LAST below, which works perfectly using: from xbbg import blp, pipeline blp.bdp(["AMZN US Equity", "SPY US Equity","KO US Equity"], ["NAME","PX_LAST"]) The issue is, I now wish to…
junorhej
  • 3
  • 2
1
2