Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2013-11-27 Thread veepsirtt
id - ConnectTrueFX('EUR/USD,GBP/USD', username='veepsirtt',+ password='veeps203') idenvironment: 0x47c7888 attr(,class) [1] TFXsession environment On Tue, Nov 26, 2013 at 8:33 PM, gsee [via R] ml-node+s789695n4681182...@n4.nabble.com wrote: Try typing that command.

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2013-11-27 Thread veepsirtt
Hello Gsee, Why I am getting this error?. unexpected input in QueryTrueFX(ConnectTrueFX(username=’ --- ## Cannot run these because there may not be an internet connection ## Not run: library(TFX) QueryTrueFX() #unauthenticated

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2013-11-27 Thread G See
Because you've pasted a right single quote unicode symbol instead of typing an apostrophe. When I copy/paste from the command you entered, I get R charToRaw(’) [1] e2 80 99 When I type an apostrophe using the keyboard, I get R charToRaw(') [1] 27 Try typing your command instead of

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2013-11-27 Thread G See
you entered a less than sign instead of an assignment operator. instead of id ConnectTrueFX(... it should be id - ConnectTrueFX(... On Wed, Nov 27, 2013 at 11:10 PM, veepsirtt veepsi...@gmail.com wrote: id ConnectTrueFX(EUR/USD,username=veepsirtt,password=veeps203) Error in id

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2013-11-27 Thread veepsirtt
QueryTrueFX(id) Symbol Bid.Price Ask.PriceHigh Low TimeStamp 1 EUR/USD1.3583 1.35839 1.35883 1.35634 2013-11-28 05:48:43 I got the results Thank you very much veepsirtt On Thu, Nov 28, 2013 at 10:46 AM, gsee [via R] ml-node+s789695n4681303...@n4.nabble.com wrote:

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2013-11-26 Thread veepsirtt
Hello gsee, I tryied the examples given in your documentation. But I am getting errors. what is the problem? With regards veepsirtt. ## Cannot run these because there may not be an internet connection ## Not run:

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2013-11-26 Thread G See
Try typing that command. Your single quote is a weird character. Try this: id - ConnectTrueFX('EUR/USD,GBP/USD', username='veepsirtt', password='veeps203') On Tue, Nov 26, 2013 at 3:47 AM, veepsirtt veepsi...@gmail.com wrote: Hello gsee, I tryied the

[R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread G See
Hello all, I'd like to introduce the TFX package which I recently published to CRAN. It is a simple R interface to the free TrueFX Web API. You can use it to get real-time quotes with millisecond resolution and fractional-pip bid/ask spreads for 26 currency pairs. There is an RPub overview of

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread Dennis Lee
-Finance] Introducing TFX: An R Interface to the TrueFX Web API [sorry for the previous HTML e-mail. Gmail seems to think that's what I meant to do] Hello all, I'd like to introduce the TFX package which I recently published to CRAN. It is a simple R interface to the free TrueFX Web API. You can

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread G See
To: r-sig-finance r-sig-finance@r-project.org Sent: Monday, 3 December 2012 8:57 PM Subject: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API [sorry for the previous HTML e-mail. Gmail seems to think that's what I meant to do] Hello all, I'd like to introduce the TFX

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread Dirk Eddelbuettel
On 3 December 2012 at 08:33, Dennis Lee wrote: | I copied and pasted the code for Shiny app, but it doesn't update the FX quotes | every 750 ms. I tried it on Firefox and Chrome. I copied and paste ? Maybe you did that the wrong way? What happens when you install the shiny and TFX packages,

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread Dennis Lee
Eddelbuettel e...@debian.org Cc: r-sig-finance r-sig-finance@r-project.org Sent: Tuesday, 4 December 2012 12:56 AM Subject: Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API On 3 December 2012 at 08:33, Dennis Lee wrote: | I copied and pasted the code for Shiny app

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread Jeff Ryan
Eddelbuettel e...@debian.org Cc: r-sig-finance r-sig-finance@r-project.org Sent: Tuesday, 4 December 2012 12:56 AM Subject: Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API On 3 December 2012 at 08:33, Dennis Lee wrote: | I copied and pasted the code for Shiny app

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread G See
-project.org Sent: Tuesday, 4 December 2012 12:56 AM Subject: Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API On 3 December 2012 at 08:33, Dennis Lee wrote: | I copied and pasted the code for Shiny app, but it doesn't update the FX quotes | every 750 ms. I tried

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread Dennis Lee
December 2012 12:56 AM Subject: Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API On 3 December 2012 at 08:33, Dennis Lee wrote: | I copied and pasted the code for Shiny app, but it doesn't update the FX quotes | every 750 ms. I tried it on Firefox and Chrome. I copied

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread G See
On Mon, Dec 3, 2012 at 11:28 AM, Dennis Lee dennis...@yahoo.com.au wrote: I did get this warning when I ran the code: runGist(4122626) Loading required package: TFX Warning: package ‘TFX’ was built under R version 2.15.2 I have checked websockets: loaded via a namespace (and not

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread Jeff Ryan
websockets are _incredibly_ browser sensitive, as I noted before. I worked on/with the websockets package back when Bryan Lewis first wrote it, and to say getting the pieces aligned is tricky is an understatement. I don't know the current browser status, but you may need to update those as well.

Re: [R-SIG-Finance] Introducing TFX: An R Interface to the TrueFX Web API

2012-12-03 Thread rex
G See gsee...@gmail.com [2012-12-03 04:57]: I'd like to introduce the TFX package which I recently published to CRAN. It is a simple R interface to the free TrueFX Web API. You can use it to get real-time quotes with millisecond resolution and fractional-pip bid/ask spreads for 26 currency