Re: [R-SIG-Finance] RBLPAPI Subscribe( )

2016-12-26 Thread Dirk Eddelbuettel
On 26 December 2016 at 14:07, chidley.r...@gmail.com wrote: | does anyone have any experience with the above function? i have used it rudimentarily in the past but i presently need to use it in conjunction with global data frames which accumulate values. | | i would appreciate any guidance.

[R-SIG-Finance] RBLPAPI Subscribe( )

2016-12-26 Thread chidley . ryan
good afternoon, does anyone have any experience with the above function? i have used it rudimentarily in the past but i presently need to use it in conjunction with global data frames which accumulate values. i would appreciate any guidance. thank you for your time. Sent from my iPhone

[R-SIG-Finance] Problem with forecast se in the forecast package

2016-12-26 Thread Ajay Shah
I was experimenting with the most impressive forecast package. I tried to rig up a simplest demo of auto.arima() in action. The forecast sd looks odd to me. Here's a demo. ## Reproducibility set.seed(101) ## Simulate a series from AR(1) x <- arima.sim(list(order = c(1,0,0), ar = 0.8), n = 1000)