R Tips for Quantitative Trading

[This article was first published on The R Trader » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

The article below is an updated version of an article I wrote  for R-Bloggers in August 2010. As a first post I thought it was a good idea to introduce one of the best tool out there for quantitative  trading: R

R is a free software environment for statistical computing and graphics. It compiles and runs on a wide variety of UNIX platforms, Windows and MacOS. R is a great statistical software by any measure. Its popularity has grown dramatically over the past few years going from being used almost exclusively in academia to a huge community of users across all fields. Today it’s probably the most widely used statistical software and it offers the richest list of statistical routines developed by an ever growing community of R enthusiasts. Interested readers can have a look at a recent study comparing the popularity of data analysis software. This is compelling to say the least.

I often red and heard that R learning curve is steep so I decided to write this short article which will help a few people hopefully. The goal is to put together some simple tools, methods and tips to create an efficient development environment.

First things first: you need a Code Editor

After a very short while with R you will probably feel that using the R Console only is very tedious and you will want a proper code editor. There is an excellent list of IDE/Text Editors on R website.

I tested pretty much all of those available on Windows. I used XEmacs for a few years (which is excellent by the way), then I switched to Notepad++. The main advantage over XEmacs is its lightness and the ease of installation for Windows users. Andrew Redd has written an excellent plugin that allow submitting R code from Notepad++. You can download the plugin here.

In February 2011 RStudio has been released and I it didn’t take me very long to make it my IDE of choice. It offers plenty of useful features that are not present in the other editors/IDE. Amongst the features I like the most there is the ability to create many charts and browse through them, save them as pdf or Image in a few seconds. It is perfectly integrated with Sweave and it offers MarkDown facilities as well.

I truly encourage any R beginner to have a look at RStudio as (from my perspective at least) it is unmatched both in terms of ease of use and functionalities.

Organizing R code

After a while you will start writing your own functions. Some are highly specialized but you might want to use other on a regular basis. What I do (and most long term R users probably do the same) is saving those functions on a separate file. The file can then be loaded each time a new project is started.

As you specialized, you can even go a step further and create functions files by category. I actually started to adopt this approach when the size of my initial generic functions file became unmanageable.

Update  packages

There are several releases of R per year. Once you started to use it for a while you will probably get tired of re loading R packages each time you upgrade to a new version. This issue has been discussed a few times in the R mailing list and there are a few ways to handle it: here is mine. I simply save an R script that installs automatically the list of packages I need. Once I installed the new R version, I run the below script.

install.packages(c("chron","fBasics",…))

There are many options available with this command including the choice of repository, the dependency options,  etc….

Getting external data into R

From my personal experience there is no better way than .csv files to load data into R. The format is dead simple, flexible and you can play around with fairly large datasets without (too much) trouble. R provides a simple function to load csv files.

data <- read.csv(…)

However you might have to interface with relational databases. In that case R provides a wide range of possibilities. RODBC is a package that connects R to SQL Server, Access or Excel. Amongst other features it allows to pass SQL code within R and get the result straight back onto an R object. By the way, I’m not a Windows fan just a pragmatic user….

There are equivalent packages providing interfaces to MySQL and PostgreSQL: RMySQL and RPostgreSQL. I haven’t tested them but I never heard of bad comments from users.

Communicating with external applications

I red somewhere that R shouldn’t be seen as an island but rather a specific tool to do specific tasks. I can’t think of any better definition of my day to day job. R is unmatched when it comes to statistical analysis but you might sometimes need to call it from external applications or you might need to get data from external sources straight into R…. Whatever the task at hand there is a good chance that you will find just the tool you need. I list below some of the most useful tools I came across:

R-(D)COM is a programming interface to COM and DCOM (ex ActiveX; Microsoft distributed object interface) to access the R calculation engine. As such, it runs only under the Windows environment. Thomas Baier and Erich Neuwirth have created a website dedicated to this technology. You will find there detailed instructions about installation and a video with examples. Using the same technology Vincent Vella’s blog explains how to make R works within C#.

The RBloomberg package developed by Robert Sams is another interesting tool. It allows essentially to retrieve data from Bloomberg and put them straight into R. More details are available on the CRAN and on R-Finance mailing list.

Obviously the list doesn’t stop here but it’s beyond the scope of this article to list all of them.

Optimizing R code

In typical financial applications R code doesn’t really have to be optimized when you deal with daily or lower frequency data. However when dealing with intraday or (even worst) tick data writing proper R code makes a huge difference. There are several R tools available out there to make R code better (i.e run faster). The code bellow tells how long it takes to run a given set of R instructions

System.time([your R code])

We can go further and identify which part of your code takes longer.

Rprof("d1.prof")
[your R code]
Rprof(NULL)
d1prof = summaryRprof("d1.prof")
head(d1prof$by.self)

The output of the above code will display the time taken by each command in absolute and relative terms.

              self.time self.pct total.time total.pct
[.data.frame       0.54     26.0       0.88      42.3
==                 0.28     13.5       0.28      13.5
&                  0.16      7.7       0.16       7.7
[[.data.frame      0.08      3.8       0.22      10.6
[                  0.06      2.9       0.94      45.2
which              0.06      2.9       0.74      35.6
match              0.06      2.9       0.24      11.5
inherits           0.06      2.9       0.14       6.7
!=                 0.06      2.9       0.06       2.9
.External          0.06      2.9       0.06       2.9

Once the slow parts identified the next step is to go back to the “drawing board” and start thinking about better ways of doing what you’re doing. From my personal experience here is a list of things to avoid when writing R code

  • Loops: they are a real “plague” in R. Use lapply, sapply, tapply … functions instead whenever possible.
  • Which statement: very often a good deal of time is spent on this statement when I can’t avoid using it
  • datatype conversion: is very time consuming. Avoiding converting from one type to another and using only numeric make usually things running faster.

Finally Matthew Dowle has written an excellent package called data.table that allows “fast subset, fast grouping and fast merge in a short and flexible syntax”. The package provides a significant improvement in performance when working with large datasets.

Conclusion

The tools presented in this article are only a small sample of what is available in the R world and represent what I found to be the most useful. Obviously it depends largely on personal tastes and the kind of task at hand but from my experience it is a rather efficient set up.

I didn’t touch upon parallel computing which is high up on the list of priorities when dealing with large datasets. The keen reader can have a look at the large literature and the various packages on the topic (here)

To leave a comment for the author, please follow the link and comment on their blog: The R Trader » R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)