Reputation: 11
I'm trying to download financial information (market and accountant information) for a long list of firm. I'm using the BDH function with the ISIN, and it works but only for accountant information. Instead for the market information such the volatility it give me "#ND /ND". But if I try to select manually the security with their name, istead of using the ISIN, Bloomberg give me the volatility I want. Why? What can I do? This is a screenshot of my excel:
Where in the colum H I use the function
=BDH($C2;$I$1:$Z$1;$E2;$E2;"Quote=A";"Days=A";"Per=Y";"Dts=S")
Upvotes: 1
Views: 4710
Reputation: 328598
I suspect it is due to a combination of using an ISIN (which is ambiguous because it refers to a company but not a specific listing) and Per=Y
.
I suggest the following as a starting point:
=BDP(C2, "EQY_PRIM_SECURITY_TICKER")
=BDP(C2, "EQY_PRIM_SECURITY_PRIM_EXCH")
=ticker & exchange & " Equity"
=BDH(full_ticker, "VOLATILITY_30D", 20171231, 20171231, "Days=A,Fill=P,Dates=H")
Upvotes: 1