I&#39;m using R 2.7<br><br>There is a newer version of RBloomberg which you can try, 0.1-11. It&#39;s not on CRAN yet, but you can get it from r-forge:<br><a href="http://r-forge.r-project.org/projects/rbloomberg/">http://r-forge.r-project.org/projects/rbloomberg/</a><br>
<br>To install the package directly within R type: install.packages(&quot;RBloomberg&quot;,repos=&quot;<a href="http://R-Forge.R-project.org">http://R-Forge.R-project.org</a>&quot;)<br>
<br>I have attached a script of what I am running. Will you run this and send me your console transcript as a text file attachment? (you can send it directly to me, not the list)<br><br><br><br><div class="gmail_quote">2008/5/8 Jorge Nieves &lt;<a href="mailto:jorge.nieves@moorecap.com">jorge.nieves@moorecap.com</a>&gt;:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">&nbsp;Thank you...<br>
<br>
I just re-run them now and obtained the same results.. What version of R<br>
are you using?<br>
<div><div></div><div class="Wj3C7c"><br>
-----Original Message-----<br>
From: <a href="mailto:r-sig-finance-bounces@stat.math.ethz.ch">r-sig-finance-bounces@stat.math.ethz.ch</a><br>
[mailto:<a href="mailto:r-sig-finance-bounces@stat.math.ethz.ch">r-sig-finance-bounces@stat.math.ethz.ch</a>] On Behalf Of Ana Nelson<br>
Sent: Thursday, May 08, 2008 11:40 AM<br>
To: <a href="mailto:r-sig-finance@stat.math.ethz.ch">r-sig-finance@stat.math.ethz.ch</a><br>
Subject: Re: [R-SIG-Finance] Rbloomberg problem<br>
<br>
Hi, Jorge,<br>
<br>
Was the market actually open for the time period you requested? I&#39;ve<br>
just run those queries and they are working fine for me.<br>
<br>
Will you try this again making sure the market you are querying is open<br>
and let me know if it works for you?<br>
<br>
Regards,<br>
Ana<br>
<br>
<br>
<br>
2008/5/8 Jorge Nieves &lt;<a href="mailto:jorge.nieves@moorecap.com">jorge.nieves@moorecap.com</a>&gt;:<br>
<br>
&gt; Hi,<br>
&gt;<br>
&gt; I am new R user and have been trying to properly configure an R<br>
&gt; working environment. &nbsp;I &nbsp;have it up and ruining except for the<br>
Rbloomberg.<br>
&gt;<br>
&gt; I tried running the examples in the documentation. And encountered<br>
&gt; into several issues: &nbsp;First, R2.5.1 was crashing and I could never<br>
&gt; understand why. I installed the latest release R 2.7.0 and was<br>
&gt; eventually able to run only tow of the examples from<br>
&gt; blpGetData(RBloomberg)<br>
&gt;<br>
&gt; The intraday &quot;Intraday bars&quot; and the &quot;Tick-by-tick&quot; examples do not<br>
run.<br>
&gt; I am wondering if (1) made a mistake in the set up? Or (2) there is a<br>
&gt; problem here with R 2.7.0 too.<br>
&gt;<br>
&gt; Currently using<br>
&gt; Package: &nbsp; &nbsp; &nbsp; RBloomberg<br>
&gt; Version: &nbsp; &nbsp; &nbsp; 0.1-10<br>
&gt; Date: &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2006-05-04<br>
&gt; Built: &nbsp; &nbsp; &nbsp; &nbsp; R 2.5.1; ; 2007-07-22 18:19:52; windows<br>
&gt;<br>
&gt; Usinga lso &#39;RDCOMClient&#39; version 0.92-0<br>
&gt;<br>
&gt; Any recommendatiosn?<br>
&gt;<br>
&gt; blpGetData(RBloomberg) examples.<br>
&gt;<br>
&gt; library(RBloomberg)<br>
&gt;<br>
&gt; .bbfields &lt;- blpReadFields(&quot;C:/Program Files/blp/API&quot;)<br>
&gt;<br>
&gt; ## Not run:<br>
&gt; conn &lt;- blpConnect()<br>
&gt;<br>
&gt; ## Snapshot<br>
&gt; eda &lt;- blpGetData(conn, c(&quot;ED5 Comdty&quot;,&quot;ED6 Comdty&quot;,&quot;ED7 Comdty&quot;,<br>
&gt; &quot;ED8 Comdty&quot;), &quot;BID&quot;)<br>
&gt; eda<br>
&gt;<br>
&gt; ## Historical (last 30 days)<br>
&gt; edb &lt;- blpGetData(conn, &quot;ED1 Comdty&quot;, &quot;PX_LAST&quot;,<br>
&gt; start=as.chron(Sys.time() - 86400 * 30)) edb<br>
&gt;<br>
&gt; ## Intraday bars (last hour in 2 min bars) edc &lt;- blpGetData(conn,<br>
&gt; &quot;ED1 Comdty&quot;, c(&quot;BID&quot;,&quot;ASK&quot;),<br>
&gt; start=as.chron(Sys.time() - 3600), barfields=&quot;OPEN&quot;, barsize=2) edc<br>
&gt;<br>
&gt; ## Tick-by-tick (3 minutes starting an hour ago) edd &lt;-<br>
&gt; blpGetData(conn, &quot;ED1 Comdty&quot;, c(&quot;BID&quot;),<br>
&gt; start=as.chron(Sys.time() - 3600),<br>
&gt; end=as.chron(Sys.time() - 3420), barsize=0) edd<br>
&gt;<br>
&gt; blpDisconnect(conn)<br>
&gt; ## End(Not run)<br>
&gt;<br>
&gt;<br>
&gt; Output<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; &gt; .bbfields &lt;- blpReadFields(&quot;C:/Program Files/blp/API&quot;)<br>
&gt; &gt;<br>
&gt; &gt; ## Not run:<br>
&gt; &gt; conn &lt;- blpConnect()<br>
&gt; &gt;<br>
&gt; &gt; ## Snapshot<br>
&gt; &gt; eda &lt;- blpGetData(conn, c(&quot;ED5 Comdty&quot;,&quot;ED6 Comdty&quot;,&quot;ED7 Comdty&quot;,<br>
&gt; + &quot;ED8 Comdty&quot;), &quot;BID&quot;)<br>
&gt; &gt; eda<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BID<br>
&gt; ED5 COMDTY 96.860<br>
&gt; ED6 COMDTY 96.680<br>
&gt; ED7 COMDTY 96.475<br>
&gt; ED8 COMDTY 96.330<br>
&gt; &gt;<br>
&gt; &gt; ## Historical (last 30 days)<br>
&gt; &gt; edb &lt;- blpGetData(conn, &quot;ED1 Comdty&quot;, &quot;PX_LAST&quot;,<br>
&gt; + start=as.chron(Sys.time() - 86400 * 30))<br>
&gt; &gt; edb<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; PX_LAST<br>
&gt; 04/08/08 &nbsp;97.530<br>
&gt; 04/09/08 &nbsp;97.545<br>
&gt; 04/10/08 &nbsp;97.500<br>
&gt; 04/11/08 &nbsp;97.540<br>
&gt; 04/14/08 &nbsp;97.495<br>
&gt; 04/15/08 &nbsp;97.440<br>
&gt; 04/16/08 &nbsp;97.290<br>
&gt; 04/17/08 &nbsp;97.120<br>
&gt; 04/18/08 &nbsp;97.090<br>
&gt; 04/21/08 &nbsp;97.125<br>
&gt; 04/22/08 &nbsp;97.125<br>
&gt; 04/23/08 &nbsp;97.135<br>
&gt; 04/24/08 &nbsp;97.145<br>
&gt; 04/25/08 &nbsp;97.135<br>
&gt; 04/28/08 &nbsp;97.195<br>
&gt; 04/29/08 &nbsp;97.245<br>
&gt; 04/30/08 &nbsp;97.325<br>
&gt; 05/01/08 &nbsp;97.330<br>
&gt; 05/02/08 &nbsp;97.365<br>
&gt; 05/05/08 &nbsp;97.350<br>
&gt; 05/06/08 &nbsp;97.365<br>
&gt; 05/07/08 &nbsp;97.365<br>
&gt; 05/08/08 &nbsp;97.395<br>
&gt; &gt;<br>
&gt; &gt; ## Intraday bars (last hour in 2 min bars) edc &lt;- blpGetData(conn,<br>
&gt; &gt; &quot;ED1 Comdty&quot;, c(&quot;BID&quot;,&quot;ASK&quot;),<br>
&gt; + start=as.chron(Sys.time() - 3600), barfields=&quot;OPEN&quot;, barsize=2)<br>
&gt; &gt; edc<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BID.OPEN ASK.OPEN<br>
&gt; (05/08/08 09:26:21) &nbsp; &nbsp; &nbsp; NA &nbsp; &nbsp; &nbsp; NA<br>
&gt; &gt;<br>
&gt; &gt; ## Tick-by-tick (3 minutes starting an hour ago) edd &lt;-<br>
&gt; &gt; blpGetData(conn, &quot;ED1 Comdty&quot;, c(&quot;BID&quot;),<br>
&gt; + start=as.chron(Sys.time() - 3600),<br>
&gt; + end=as.chron(Sys.time() - 3420), barsize=0)<br>
&gt; &gt; edd<br>
&gt; Error in substr(text, first, last) : invalid substring argument(s)<br>
&gt; &gt;<br>
&gt; &gt; blpDisconnect(conn)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; used (Mb) gc trigger (Mb) max used (Mb)<br>
&gt; Ncells 291899 &nbsp;7.8 &nbsp; &nbsp; 531268 14.2 &nbsp; 408779 11.0<br>
&gt; Vcells 610228 &nbsp;4.7 &nbsp; &nbsp;1151091 &nbsp;8.8 &nbsp;1151024 &nbsp;8.8<br>
&gt; &gt; ## End(Not run)<br>
&gt; &gt;<br>
&gt; &gt; help(blpDisconnect)<br>
&gt; &gt;<br>
&gt;<br>
&gt;<br>
&gt; Jorge Nieves<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp;[[alternative HTML version deleted]]<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; <a href="mailto:R-SIG-Finance@stat.math.ethz.ch">R-SIG-Finance@stat.math.ethz.ch</a> mailing list<br>
&gt; <a href="https://stat.ethz.ch/mailman/listinfo/r-sig-finance" target="_blank">https://stat.ethz.ch/mailman/listinfo/r-sig-finance</a><br>
&gt; -- Subscriber-posting only.<br>
&gt; -- If you want to post, subscribe first.<br>
&gt;<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;[[alternative HTML version deleted]]<br>
<br>
_______________________________________________<br>
<a href="mailto:R-SIG-Finance@stat.math.ethz.ch">R-SIG-Finance@stat.math.ethz.ch</a> mailing list<br>
<a href="https://stat.ethz.ch/mailman/listinfo/r-sig-finance" target="_blank">https://stat.ethz.ch/mailman/listinfo/r-sig-finance</a><br>
-- Subscriber-posting only.<br>
-- If you want to post, subscribe first.<br>
<br>
_______________________________________________<br>
<a href="mailto:R-SIG-Finance@stat.math.ethz.ch">R-SIG-Finance@stat.math.ethz.ch</a> mailing list<br>
<a href="https://stat.ethz.ch/mailman/listinfo/r-sig-finance" target="_blank">https://stat.ethz.ch/mailman/listinfo/r-sig-finance</a><br>
-- Subscriber-posting only.<br>
-- If you want to post, subscribe first.<br>
</div></div></blockquote></div><br>