Is anyone knowledgeable on programming language implementation of algorithmic trading?

I am going to propose a research project on functional programming and algorithmic trading. My proposal is here: http://pastebin.com/wcigd5tk Any comments would be very appreciated.

What do you think the future of functional languages in the financial field is? I see many job postings that ask for experience in java and C++, and i dont understand why.

link|improve this question

75% accept rate
feedback

closed as not constructive by Michael Petrotta, Tuzo, C. A. McCann, sixlettervariables, Graviton Sep 20 '11 at 7:53

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 2 down vote accepted

Jane Street is very well known for using OCaml for their trading software. Here you can find some reasons why they decided to use functional languages rather than imperative ones. They also have a blog describing several specific solutions to problems they encountered during development.

link|improve this answer
feedback

C++ is the most popular in that field. java , python ,haskall ,c# are all runners up

haskall and c# are functional with haskell being purely functional

eventually the field will move to a more "modern language" like c# or haskall but right now c++ has so much support the libraries are already made and its implementation is the easiest .

link|improve this answer
wilmott.com/… heres a good fourm discussion on haskell – pyCthon Sep 19 '11 at 3:25
feedback

For Trading application, it usually has Real time, multithread, low latency, high availability to consider too. I was working in a company developing a trading application using both(mixed) C++ and Java as it fit with the behaviour of the application.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.