Serving the Quantitative Finance Community

Search found 52 matches

by rwinston
January 16th, 2009, 11:56 pm
Forum: Careers Forum
Topic: Is machine learning useful in finance?
Replies: 32
Views: 53081

Is machine learning useful in finance?

<t>In regards to an earlier poster: I think it is quite often the case that people just blindly throw one of a selection of "exciting" ML algorithms at a problem...e.g. I have seen a lot of excitement recently on a couple of programming forums, where people have "rediscovered" evolutionary algorithm...
by rwinston
January 7th, 2009, 9:28 pm
Forum: General Forum
Topic: Financial Modelers' Manifesto
Replies: 126
Views: 82305

Financial Modelers' Manifesto

The great statistician George Box is quoted as saying: "All models are wrong, some are useful". It's amazing how often this truism is forgotten!
by rwinston
December 16th, 2008, 6:58 pm
Forum: Programming and Software Forum
Topic: Best scripting language to learn?
Replies: 9
Views: 46902

Best scripting language to learn?

Either Ruby or Python. I personally prefer Ruby, but Python seems to have more momentum behind it at the moment.
by rwinston
December 16th, 2008, 6:56 pm
Forum: Programming and Software Forum
Topic: How do RTGet and RTContribute work [Reuters]
Replies: 2
Views: 51379

How do RTGet and RTContribute work [Reuters]

<t>They use the underlying COM APIs (I think it is the SSL COM API) to get the data, I believe...you can retrieve real-time data using RtGet() and historical time series data using DtHistory(), IIRC. So yes, I think you can contribute, subscribe to real-time data, and historical data all from an Exc...
by rwinston
October 13th, 2008, 7:45 am
Forum: Programming and Software Forum
Topic: Reuter's slow datafeed in Matlab
Replies: 5
Views: 51761

Reuter's slow datafeed in Matlab

<t>As the previous poster said, you will probably want to use the RFA API. Its actually quite straightforward - I wrote C++ adapters for R for both real-time (RFA) and historic time series (SFC) data. Note that SFC will probably disappear sometime in the future, and the RFA API will handle both real...
by rwinston
October 6th, 2008, 1:40 pm
Forum: Programming and Software Forum
Topic: S&P Capital IQ Experiences?
Replies: 1
Views: 48456

S&P Capital IQ Experiences?

<t>I used this last year when researching some data for a research project. I found it to be very good - its like Amadeus or similar systems, however CapIQ is nice in that it allows you to drill down into the financial statements by clicking on individual measures, so you can see exactly how they ha...
by rwinston
September 30th, 2008, 10:31 pm
Forum: Programming and Software Forum
Topic: I want to learn Java... need advice
Replies: 17
Views: 51618

I want to learn Java... need advice

<t>I use Eclipse every day, and have done so for the past five years or so. I'm also a long-term VS user, and whilst VS has come a long way, there are certain features that I take for granted in Eclipse that are still missing from VS. It's an extremely powerful (although somewhat bloated these days)...
by rwinston
September 30th, 2008, 2:10 pm
Forum: Careers Forum
Topic: Move to the UK
Replies: 19
Views: 53279

Move to the UK

Not being funny, but you seem to have picked a very inappropriate time to come to London to resurrect your career...
by rwinston
May 21st, 2008, 10:28 pm
Forum: Careers Forum
Topic: To learn or to not learn R
Replies: 15
Views: 59208

To learn or to not learn R

<t>R is a virtual standard in statistical analysis tools. Most stats researchers for the last 10 years or so have been doing their published analysis in R or S/Plus. It is certainly worth learning - it has a nice quasi-functional language interface, a huge array of libraries, and a very straightforw...
by rwinston
May 21st, 2008, 10:17 pm
Forum: Careers Forum
Topic: My Econ Phd Feels Useless
Replies: 45
Views: 64258

My Econ Phd Feels Useless

<t>QuoteAs to whether the best way to mastrering other languages is by learning C first - I very much doubt that (everybody's brain is wired differently of course). Clearly if you already know C, it won't hurt you - but the time required to learn it, instead of just starting with C++, might not be w...
by rwinston
April 28th, 2008, 9:47 am
Forum: Programming and Software Forum
Topic: Bring back Domain-Specific Languages
Replies: 21
Views: 59705

Bring back Domain-Specific Languages

<t>Actually , these are the specific lectures (the original ones by Abelson and Sussman), although you'll find a lot of other courses based on the textbook and content from this original coursehttp://swiss.csail.mit.edu/classes/6.001/abelson-sussman-lectures/These lectures were actually filmed for a...
by rwinston
April 28th, 2008, 8:12 am
Forum: Programming and Software Forum
Topic: Bring back Domain-Specific Languages
Replies: 21
Views: 59705

Bring back Domain-Specific Languages

I'm very interested in DSLs. If you've ever watched the video lectures for the MIT SICP course, you'll see that they advocate DSLs as a favoured solution, citing a couple of examples.
by rwinston
April 23rd, 2008, 10:47 am
Forum: Programming and Software Forum
Topic: capturing tick data from Reuters
Replies: 1
Views: 55981

capturing tick data from Reuters

<t>I think this question has been asked here previously at some stage, you might be able to find an answer by searching the forum...Otherwise, I'm not altogether sure how you can *efficiently* save tick data from PPP. I just use it for time series imports, and use the lower-level RFA API from C++ or...
by rwinston
March 25th, 2008, 11:05 am
Forum: Programming and Software Forum
Topic: Free replacement for Eviews
Replies: 3
Views: 58367

Free replacement for Eviews

Have you tried gretl?http://gretl.sourceforge.net/
by rwinston
January 13th, 2008, 4:08 pm
Forum: Programming and Software Forum
Topic: R and C++,C# etc.
Replies: 4
Views: 62143

R and C++,C# etc.

It's very easy to call the R API directly from C/C++ - a lot of R extensions do this. Just include the relevant R header files. All the information you need is in the "Writing R Extensions" document on CRAN.