calling a function on KDB server from R
Hi, I have a function written on KDB server which gives me a list of output for each date. I have to calculate function for set of dates but when I am passing it as a vector, the date format doesnt work. Please have a look at the code below:
per <- c('2014.07.31', '2014.07.30','2014.07.29','2014.09.28')
per <- as.Date(per,"%Y.%m.%d")
PWPfunc <- function(k){
execute(h,"pwp_frac[0.05;0.1;k;`AAPL]")
}
output <- lapply(per,PWPfunc).
KDB is not recognizing the date format from R. Please help.
I usually generate a list of dates and convert them into KDB readable by using
sub
functionIf you want to remove weekends from your list you can use chron library: