pdblp icon indicating copy to clipboard operation
pdblp copied to clipboard

pandas wrapper for Bloomberg Open API

Results 37 pdblp issues
Sort by recently updated
recently updated
newest added

#### Code Sample ```python fun = blpcon.ref(securities, fundamental_fields, [('EQY_FUND_RELATIVE_PERIOD', relativePeriod)]) ``` #### Problem description When daily limit has reached, I get TypeError: string indices must be integers ``` ~\.conda\envs\myconda36\lib\site-packages\pdblp\pdblp.py in...

enhancement

Closes #49 - all tests added / passed ``` >>> import pdblp >>> con = pdblp.BCon(port=8194, timeout=5000) >>> con.start() >>> con.secf("IBM") ticker description 0 IBM US EQUITY International Business Machines...

#### Problem description How can I use parameters not in the overrides, like "fill=p" and "days=a" in excel: =bdp("ISIN Code","PX_LAST","fill=p","days=a")?

question

Hi, Matt. I have tried the following with many variations (i.e. PCS, PricingSource, pricingsource) and it doesn't seem to work. Any clues? ```python con = pdblp.BCon(timeout=5000) con.start() df = con.bdh(tickers=['AY24...

question

#### Code Sample, a copy-pastable example if possible override = {("DVD_HIST_ALL","Y"),("EndCol",2)} con.bulkref(Ticker = ['SRG IM Equity'],Field = ['DVD_HIST_ALL'], ovrds = override) ``` #### Problem description Hi I am trying to...

#### Code Sample, a copy-pastable example if possible ```python exchange_rate_df = con.ref_hist("USDHKD BGN Curncy", "PX_LAST", dates=['20170331', '20170406']) print(exchange_rate_df) ``` #### Problem description I am just trying to get the historical...

question

#### Code Sample, a copy-pastable example if possible ```python equity = con.bdib('SPX Index', '2019-04-19T01:00:00', '2019-04-22T21:00:00', 'TRADE', 1) ``` #### Problem description As of April 22nd at 8:03EST, the request for...

bug

#### Code Sample, a copy-pastable example if possible ```python # Your code here, this should be a minimal reproducible example, see https://stackoverflow.com/help/mcve ``` #### Problem description [this should explain **why**...

question

#### Code Sample ``` import pdblp con = pdblp.BCon(debug=True, timeout=10000) con.start() test = con.ref(['IS7597250 Index'], ['VEGA_NOTIONAL', 'FIRST_TRADING_DATE']) con.stop() print(test) con = pdblp.BCon(debug=True,timeout=10000) con.start() test = con.ref(['IS7597250 Index'], ['FIRST_TRADING_DATE']) con.stop() print(test)...

Is there any support for Bcurveint and Bcurvestrip formulas in bdblp library?

question