Page 1 of 1

Pulling in other Bloomberg Fields

Posted: Mon Apr 11, 2016 1:00 am
by kszynkar
Hi,

I'm pulling in the closing price of the 2 year US treasury note from Bloomberg using the following code:

Code: Select all

dbopen(type=bloom) index fetch(link) usgg2yr
How would I get different fields from Bloomberg other than the (default) closing price, such as the "Open Px", "High Price", and "Low Price"? These are stored in the same ticker on Bloomberg.

Thanks

Re: Pulling in other Bloomberg Fields

Posted: Mon Apr 11, 2016 2:46 am
by trubador

Code: Select all

fetch(index) "usgg2yr index open" fetch(index) "usgg2yr index high" fetch(index) "usgg2yr index low"

Re: Pulling in other Bloomberg Fields

Posted: Mon Apr 11, 2016 3:49 am
by kszynkar
thanks