in reply to Accessing Bloomberg API's via Win32::OLE
You can do this for each API call you want to import into your script. Of course, this means you have to know what the C prototype of the API call you need looks like.use Win32::API; my $objDataControl = Win32::API->new("blpdatax", "<c prototype of func +tion>"); my $bloomData = $objDataControl->Call();
|
|---|