How can I start Bloomberg API in python?

余生长醉 提交于 2019-12-04 21:14:16

Please clarify which IP and port you're attempting to connect to.

If connecting to the local process 'bbcomm.exe' then the IP is 127.0.0.1 (localhost) and port 8194. Check if bbcomm.exe process is running (e.g. in Task Manager) if not then start it manually by typing bbcomm.exe in CMD, or by launching Excel with one or more BDP() functions. Make sure the Bloomberg Terminal is running.

If you are connecting to a remote host (e.g. B-Pipe or ServerApi) then check if the port is reachable: telnet

Don’t need to worry about connections if you use xbbg:

from xbbg import blp

blp.bdh(
    ['MSFT US Equity', 'IBM US Equity', 'CSCO US Equity'],
    'Px_Last', '1/1/2014', '11/12/2014'
)

Output:

ticker     MSFT US Equity IBM US Equity CSCO US Equity
field             Px_Last       Px_Last        Px_Last
date                                                  
2014-01-02          32.95        155.62          18.88
2014-01-03          32.73        156.55          18.86
2014-01-06          32.04        156.01          18.89
2014-01-07          32.29        159.12          19.14
2014-01-08          31.71        157.66          19.13
......

It sounds like all you did was import the library and attempt to use it.

Most apis require you to set up some sort of account with them to access their data so that they can see who's using their api improperly and who's exceeding their rate limits.

Download the BLPAPI Core Developer Guide from their website and follow those instructions carefully.

https://www.bloomberg.com/professional/support/api-library/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!