Bloomberg Data License Per Security User Manual

I've looked through the Bloomberg website, but haven't found any information about available license plans. I'm curious whether it provides any license that allows you to re-distribute data requested from Bloomberg terminal to third-party customers? Or maybe you can provide any link to documents which regulate re-distribution of their data? Bloomberg Per Security Optimisation service Reduce your Per Security usage costs by up to 40% Market Data is typically regarded as most Front office trading departments’ second largest costs after personnel. Bloomberg’s highly flexible and widely used Per Security service often.

Bloomberg User Manual

Get Quotes request example from Bloomberg Data License

Bloomberg Per Security Manual

GetQuotes.cs

Bloomberg Data License Cost

ManualBloomberg data license guide

Bloomberg Data License Manual

privatestaticvoidGetQuotes(PerSecurityWSClientclient)
{
varinstrument_search='PETR4 BZ';
Console.WriteLine('Fazendo requisição de preços de {0}', instrument_search);
varinstruments=newList<Instrument> { newInstrument() { id=instrument_search, yellowkey=MarketSector.Equity, yellowkeySpecified=true, type=InstrumentType.TICKER, typeSpecified=false } };
varsubmitQuotesRequest=client.submitGetQuotesRequest(newSubmitGetQuotesRequest()
{
headers=newQuotesHeaders()
{
datetimerange=newDateTimeRange() { startDateTime=DateTime.Now.AddHours(-1), endDateTime=DateTime.Now },
daterange=newDateRange()
{
period=newPeriod() { start=DateTime.Today, end=DateTime.Today }
}
},
instruments=newInstruments()
{
instrument=instruments.ToArray()
}
});
varquotes=newRetrieveGetQuotesResponse()
{
statusCode=newResponseStatus() { code=100 }
};
while (quotes.statusCode.code100)
{
WaitingForResponse();
quotes=client.retrieveGetQuotesResponse(newRetrieveGetQuotesRequest()
{
responseId=submitQuotesRequest.responseId
});
}
if (quotes.statusCode.code>0)
thrownewException(quotes.statusCode.description);
foreach (varinstrinquotes.instrumentDatas)
{
foreach (varquoteininstr.quotes)
{
Console.WriteLine('Instrument: {0} Date: {1} Price: {2}', instr.instrument.id, quote.dateTime, quote.price);
}
}
}

Bloomberg Data License Per Security Product Manual

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment