Displaying 4 results from an estimated 4 matches for "nok1v".
Did you mean:
nodev
2007 Jan 10
0
Column names in Zoo object
Hi,
I am downloading Bloomberg data from R. This data will be stored in a
zoo object by default. The command is
dat<-blpGetData(con,c("NOK1V FH Equity","AUA AV
Equity"),"PX_OPEN",start=as.chron(as.Date("12/1/2006",
"%m/%d/%Y")),end=as.chron(as.Date("12/28/2006", "%m/%d/%Y")))
Here I am downloading the data for two tickers, ("NOK1V FH Equity" and
"AUA AV Equ...
2008 Nov 25
0
Vector autoregression, panel data
...6030e-04 -2.650549e-01 3.046369e-04
ALBAV 19910430 0.0000000000 2.041973e-03 -2.682568e-01 3.038513e-04
ALBAV 19910531 0.0000000000 6.682507e-03 1.905265e-02 3.030691e-04
FUM1V 19910228 ... ...
FUM1V 19910327 ... ...
FUM1V 19910430 ... ...
NOK1V 19910228
NOK1V 19910327
NOK1V 19910430
Hope someone can help.
-Tom
--
View this message in context: http://www.nabble.com/Vector-autoregression%2C-panel-data-tp20679144p20679144.html
Sent from the R help mailing list archive at Nabble.com.
2006 Nov 22
1
RBloomberg Multi-ticker problem
Hi,
I am trying to download data from Bloomberg through R. If I try to
download intraday data for multiple tickers and only one field, I get
the error, written below in red. How do I get rid of this error?
> dat<-blpGetData(conn, c("NOK1V FH Equity","AUA AV Equity"),
"LAST_PRICE",
start=as.chron(as.Date("2006-9-13","%Y-%m-%d")),barfields="VOLUME",
barsize=10,retval="data.frame")
Error in if (typ[n] == "character") { : missing value where TRUE/FALSE
needed
*...
2006 Dec 13
0
Problem in Converting Zoo Objects to Dataframes
...ed to convert this zoo object into a data frame, called bb.
"
library(zoo)
library(chron)
library(RDCOMClient)
library(RBloomberg)
conn<-blpConnect(show.days="trading",na.action="previous.days",periodici
ty="daily")
intra<-blpGetData(conn, c("NOK1V FH Equity","AUA AV Equity"),
"LAST_PRICE", start=as.chron(as.Date("10/11/2006",
"%m/%d/%Y")),end=as.chron(as.Date("12/5/2006","%m/%d/%Y")),barfields="VO
LUME", barsize=10)
bb=as.data.frame(intra)
blpDisconnect(conn)
&q...