Serving the Quantitative Finance Community

 
User avatar
drona
Topic Author
Posts: 0
Joined: February 10th, 2002, 1:34 pm

.NET and Bloomberg

October 9th, 2003, 8:11 pm

I remember seeing some mention of Bloomberg and .NET, hash anyone started touse .net technology or langauges like c# to interface with bloomberg api.
 
User avatar
FDAXHunter
Posts: 14
Joined: November 5th, 2002, 4:08 pm

.NET and Bloomberg

October 10th, 2003, 6:53 am

You can simply wrap the Bloomberg COM objects in a .NET wrapper. Why you would want to use an old piece of crap like that, I don't know, but that's what you'd do.
 
User avatar
WannaBeDude
Posts: 0
Joined: April 1st, 2003, 12:36 pm

.NET and Bloomberg

October 10th, 2003, 11:32 am

Hi FDAXHunter,<<Why you would want to use an old piece of crap like that>> what other options are avaialbale???/
 
User avatar
mckenzieg1
Posts: 0
Joined: June 3rd, 2002, 6:35 pm

.NET and Bloomberg

October 15th, 2003, 7:01 pm

You don't have to do anything special to access legacy ActiveX / COM controls (including the Bloomberg Data Control) from .NET - just add them to your Visual Studio toolbar and drop them onto a form - COM Interop will take care of the rest. Remember to watch out for threading issues if you are using WinForms - WinForms controls are NOT thread-safe, and events from COM controls may get handled on their own thread, which means that you have to use Invoke to access controls on the form.Whether or not Bloomberg's API (ActiveX or C-API) is "an old piece of crap" is debatable, but if you have a Bloomberg license and want to get the data into another program it's what you've got to work with. In my experience, the ActiveX API has a few quirks, but basically works pretty well, and Bloomberg's breadth of data is unbeatable - no one else has the coverage they do.
 
User avatar
catbegemot
Posts: 0
Joined: February 14th, 2004, 7:23 pm

.NET and Bloomberg

February 14th, 2004, 7:37 pm

I know of the company who exposes the Bloomberg control as a web service... which is much easier to use, then any kind of controls and/or API, since it's machine-independent. AFAIK, it's done in C#.NET
 
User avatar
drona
Topic Author
Posts: 0
Joined: February 10th, 2002, 1:34 pm

.NET and Bloomberg

February 14th, 2004, 8:57 pm

What's the name of the company ? any url's
 
User avatar
Oinker
Posts: 0
Joined: March 20th, 2003, 4:30 pm

.NET and Bloomberg

April 30th, 2004, 7:47 pm

OK.... It's been a couple of months -- Any updates/news on the VB.NET to Bloomberg API front? Any recent war stories? Thanks to all.
 
User avatar
MichaelA
Posts: 0
Joined: October 23rd, 2001, 6:15 pm

.NET and Bloomberg

August 23rd, 2004, 7:15 pm

I checked with Bloomberg earlier this month. As far as the API goes, they support VBA, C (C++ isn't officially supported, but it should work anyway), and nothing else.The official line I was given is that they do not have any sort of anticipated data for C# / .NET functionality with their API.Then again, that may have been just some bored person at BBG keen to get me off the phone so that they could get rid of me and go home !
 
User avatar
Gamanti
Posts: 0
Joined: February 25th, 2003, 7:30 pm

.NET and Bloomberg

February 9th, 2005, 8:25 pm

I just found out there is a release of the Bloomberg API for .NET. Anyone started playing around with it?I'd like to hear the first reactions.The documentation looks very thin, but they should put more with the next release. There's the few usual example, and I guess I'll start from there. Regards,G
 
User avatar
webshark
Posts: 0
Joined: May 2nd, 2003, 9:59 am

.NET and Bloomberg

February 15th, 2005, 6:32 pm

I was trying to download the API for .NET at the WAPI website, but I experienced a technical problem to download it.Did anybody success to download it? I want to figure out if it is a problem with my station or Bloomberg has a temporal problem.Thanks,Michael
 
User avatar
burnsgk
Posts: 0
Joined: February 23rd, 2005, 1:18 pm

.NET and Bloomberg

February 23rd, 2005, 7:26 pm

I downloaded the .NET API a day or two after the 2nd release was made available. I didn't seem to encounter any problems. I created a simple app that subscribes to a handful of key treasury rates, based upon some of the walk-through examples that were provided in the documentation. Haven't done much more with it since.-Greg Burns
 
User avatar
farmer
Posts: 63
Joined: December 16th, 2002, 7:09 am

.NET and Bloomberg

March 1st, 2005, 2:56 pm

Never mind...
Last edited by farmer on February 28th, 2005, 11:00 pm, edited 1 time in total.
Antonin Scalia Library http://antoninscalia.com
 
User avatar
WannaBeDude
Posts: 0
Joined: April 1st, 2003, 12:36 pm

.NET and Bloomberg

June 6th, 2005, 8:01 pm

so its been a while since the .net version came out. has anybody done any major work with it? anything i shd be careful abt before taking the plunge.
 
User avatar
farmer
Posts: 63
Joined: December 16th, 2002, 7:09 am

.NET and Bloomberg

June 7th, 2005, 7:18 pm

The historical bars request doesn't seem to return bars more recent than something like 22 minutes ago. And then it doesn't always have all the fields you requested for every time slice. For daily data, get every day, then remove the weekends yourself. Some symbols have delays without telling you...
Antonin Scalia Library http://antoninscalia.com
 
User avatar
WannaBeDude
Posts: 0
Joined: April 1st, 2003, 12:36 pm

.NET and Bloomberg

June 8th, 2005, 4:45 pm

thankx for the info