I have recently read an article about IEX and brad katsuyama on bloomberg website.And have also read the book 'FLASH BOYS' by michael lewis. after reading about all this i wanted to know what programming languages does these guys in big banks use??
I found this YouTube presentation very informative about how an HF firm uses Java for live trading...<p>Just one awesome fact...they structured their code such that they only have one GC event a day (and it's tuned to happen at night). Watch it, pretty cool compared to anyone doing plain vanilla java dev at an enterprise.<p><a href="https://www.youtube.com/watch?v=iINk7x44MmM" rel="nofollow">https://www.youtube.com/watch?v=iINk7x44MmM</a>
For anything on the fast path the list would be mostly what you'd expect:<p>- C++<p>- C<p>- Java<p>- Verilog/VHDL or what ever language your FPGA tooling requires.<p>As for support tooling then python and R are very popular.<p>It's important to note that its not only speed that dictates what you use in HFT, the shear amount of data you need to handle also dictates what you use. As an example C++'s inplace new operator helps for things like object pooling.<p>I'm not UHFT or HFT and we can get by with F# and C#. We are at the stage where we have to think about our data structures and memory access patterns but we aren't throwing away readability and maintainability just to get the best possible performance.<p>From my experience, its much more typical for funds to target performance around this level than the HFT level.<p>I guess it should be said that you can name almost any programming language and you'll find that someone is using it and claiming to be an HFT shop, ie someone will probably mention OCaml due to Jane Street.<p>This question <a href="http://quant.stackexchange.com/q/12618/743" rel="nofollow">http://quant.stackexchange.com/q/12618/743</a> on the quant stack exchange shows that pretty much every language gets used.
my previous comment "mostly C++" got down voted. I happen to work at a firm in this industry. C++ is the language used most in HFT.<p>Aside from this, you can verify this by just looking at the job postings.
See the documentary 'The Wall Street Code' <a href="https://www.youtube.com/watch?v=hw3XtscVCVI" rel="nofollow">https://www.youtube.com/watch?v=hw3XtscVCVI</a> AFAICR one of the protagonists (Haim Bodek) said his company had one million lines of C (or mainly C) code for HFT trading.