bloomberg

Bloomberg data doesn't populate until Excel VBA macro finishes

谁说胖子不能爱 提交于 2019-11-28 06:36:49
I'm running a macro in a blank Excel 2007 workbook on a PC with a Bloomberg license. The macro inserts Bloomberg functions into sheet1 that pull yield curve data. Some additional functions' results are dependent on the first functions finishing and correctly displaying the Bberg data. When I step through the program it only displays '#N/A Requesting Data . . .' instead of the results of the query, no matter how slowly I go. Because some of the functions are dependent on string and numeric field results being populated, the program hits a run-time error at that code. When I stop debugging --

package 'Rbbg' is not available (for R version 2.15.2)

六眼飞鱼酱① 提交于 2019-11-28 03:51:34
问题 How do I find out for which versions of R this package is available? > install.packages("Rbbg", repos = "http://r.findata.org") Warning: unable to access index for repository http://r.findata.org/src/contrib Warning message: package 'Rbbg' is not available (for R version 2.15.2) 回答1: You can find out by browsing the bin directory at http://r.findata.org/ You're using Windows, right? The source code for Rbbg is available on github at https://github.com/johnlaing/blpwrapper 回答2: Part of the

Anaconda - Install blpapi in environment

一笑奈何 提交于 2019-11-28 01:56:41
问题 I have py2.7 as my original Anaconda install, and have installed py3.4 in an environment named py3 . I cannot seem to be able to install blpapi , the Bloomberg API library, in the py3 environment. Once I activate py3 , conda install blpapi cannot find the package, whereas pip install blpapi tells me that: Requirement already satisfied: blpapi in C:\users\pythonic\programs\anaconda\lib\site-packages Because it finds the package installed for python 2.7 If I try to install via the executable

How to open a specific bloomberg terminal page programmatically?

﹥>﹥吖頭↗ 提交于 2019-11-27 12:30:00
问题 Is there a reliable way to open a specific bloomberg terminal page programmatically (e.g. "MSFT Equity")? I am open to any suggestions and code samples: Start process with path to bloomberg terminal executable and ticker in the arguments Bloomberg API DDE COM Automation SendKeys (can be blocked by some antivirus software) ... Many thanks 回答1: You can get the answer to this through the terminal: API < GO > > API Developer's Website > WAPI Home > FAQs > Miscellaneous Topics And the specific

Bloomberg Open API

℡╲_俬逩灬. 提交于 2019-11-27 10:13:40
Bloomberg Open API announced recently - is it just the Bloomberg SDK which had been (limitedly) exposed to public for quite a while? My understanding is that Bloomberg SDK is possible to use only on the machine with a Bloomberg Terminal installed, but the recently announced Open API (which is syntactically the same) will be possible to use from any machine. Is that correct? Are there any restrictions on the new API (say, delayed responses etc)? Just cannot believe they're giving away for free something that costed money - any clarifications are welcome! EDIT : The above was probably not clear,

VBA to refresh Bloomberg data not running in proper order

爱⌒轻易说出口 提交于 2019-11-27 03:01:06
问题 my purpose is to update Bloomberg data and do some calculatations with different tickers. But it seems that VBA will run all the calculations without waiting the data to be updated. Here is the code: Application.Calculation = xlCalculationAutomatic For i = 1 To 3 Call Worksheets("Sheet1").Range("data1").Select 'the cells "data1" contains the function =BDH(ticker, field, start date, end date) to get the information from Bloomberg' Call Application.Run("RefreshCurrentSelection") Worksheets(

How to refresh/load RTD Bloomberg function (BDH) in excel in vba

余生长醉 提交于 2019-11-27 01:59:37
问题 I would like to know if there's a way in VBA code forcing the bloomberg functions (In spreadsheet) to update its value( Any BDH functions) Targeting Developers have faced similar issue/ have Bloomberg terminal What have I tried-- Application.RTD.RefreshData Application.RTD.throttleInterval = 0 Application.CalculateFull The BDH function do not reload themselve. The only way I can refresh them now is : I click the "Refresh WorkBook" Button on the Ribbon of the BloomBerg add-in. Since the

Excel interop loading XLLs and DLLs

醉酒当歌 提交于 2019-11-27 01:59:18
问题 I have excel with the Bloomberg API ( which uses simple calls like =BDP("MS equity","ask") ). I also have a C# application that opens an excel file (through interop) that uses the Bloomberg API. I have read here that addins are not loaded when you load excel through interop. I have even tried using the code suggested there. However, that only seems to work for XLL and XLAM files and it looks like Bloomberg also uses DLL files which doesn't get loaded. Is there any way to get all of these

Bloomberg data doesn't populate until Excel VBA macro finishes

耗尽温柔 提交于 2019-11-26 22:51:26
问题 I'm running a macro in a blank Excel 2007 workbook on a PC with a Bloomberg license. The macro inserts Bloomberg functions into sheet1 that pull yield curve data. Some additional functions' results are dependent on the first functions finishing and correctly displaying the Bberg data. When I step through the program it only displays '#N/A Requesting Data . . .' instead of the results of the query, no matter how slowly I go. Because some of the functions are dependent on string and numeric