I am currently learning how to use the IBrokers package.
I can pull equity prices at frequencies I want, and option prices, but I'm currently stuck on pulling foreign exchange rates.
I don't know how to set up the right twsContract, for calling with reqHistoricalData.
I am interested in getting CADUSD currencies on say a 1 min basis. How can I do this?
The example in the manual gives:
currency <- twsCurrency("EUR")
When I try and call this with say reqHistoricalData(tws, currency) it comes back with an error saying something like "no historical data available 1D". As I can't even get the example in the manual to work, I'm rather stuck...
Can someone please enlighten me as to what the correct syntax is? If I have a couple of examples that actually work, I can take it from there.
Also, when I try using "USD.CAD" or "CAD.USD" as the ticker in the twsContract object, I'm getting complaints that this isn't a valid security. How can I find out what the right ticker name for USD.CAD would be? Right now I figure out the ticket for stocks by looking at my interactive brokers application which is open at the same time obviously, and typing the company name and doing a search. The ticker generally comes back e.g. (type apple, get back AAPL when I want to add this security to my portfolio in the interactive brokers workstation).
Any help would be much appreciated.
Also, another related question is how can I pull the historical of say the S&P500 price index on a 1 min basis say?
I am guessing I would use a twsContract object in R, but I don't know what parameters to use. What should the ticker be? The trade workstation mentions it's an "index" product type (obviously), which doesn't fit into any of the wrappers like twsStock, twsCurrency etc... Again, Is there an example of this somewhere, which actually works?