Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Apparently, Goldman Sachs' code for program trading is written in a proprietary programming language called slang and relies on a proprietary database (secdb).

I can only guess that secdb is a column-oriented time-series database for securities data (like KDB+ from Kx Systems), but I have no idea what Slang is. It could be a wrapper around regular C++. It could be an array-oriented programming language, like APL, K, and Q.

Does anyone know where to find details about Slang (short of working at Goldman Sachs)?

share|improve this question
Interesting enough, Slang was a commodore64 language – Federico Culloca Aug 2 '10 at 23:56
4  
@klez: Imagine the challenges of high-frequency trading on a Commodore 64... – Mr. X Aug 2 '10 at 23:58

3 Answers

There was a very interesting article a couple of months ago.

Why founding a three-person startup with zero revenue is better than working for Goldman Sachs.

" At the risk of getting sued, let me throw you geeks a bone and part the Goldman veil a bit. The Goldman Sachs risk system is called SecDB (securities database), and everything at Goldman that matters is run out of it. The GUI itself looks like a settings screen from DOS 3.0, but no one cares about UI cosmetics on the Street. The language itself was called SLANG (securities language) and was a Python/Perl like thing, with OOP and the ORM layer baked in. Database replication was near-instant, and pushing to production was two keystrokes. You pushed, and London and Tokyo saw the change as fast as your neighbor on the desk did (and yes, if you fucked things up, you got 4AM phone calls from some British dude telling you to fix it). Regtests ran nightly, and no one could trade a model without thorough testing (that might sound like standard practice, but you have no idea how primitive the development culture is on the Street). The whole thing was so good, I didn’t even know what an ORM really was until I started using Rails and had to wrestle with ActiveRecord. The codebase was roughly 15MM lines when I left, and growing. I suspect my retinas are still scarred by the weird color blue SecDB was by default. "

The hacker news also got this commentary:

"I've had a number of people tell me this system is why GS won the financial crisis. During the financial crisis, GS knew their positions and their risks. They could also calculate the side effects of proposed trades as quickly as their computers could calculate it. This meant the people at the top could actively plan what to do next during the day. In contrast, MS and JPM can only get information like this a few hours after the end of the day, and supposedly Citi just can't calculate such things without massive effort." (yummyfajitas)

And finally another comment in other HN thread:

"I've looked at Slang a bit. It's an interpreted dataflow language running on an in-memory database called SecDB. Untyped, Pascal-ish, single-threaded, and poor support for namespaces. Like a spreadsheet, it only needs to recompute the subgraph that has changed. It was probably innovative 25 years ago (I think it came out mid-80s), but today you could write Java code and use memoization aggressively to speed things up. Slang is not why GS traders are successful. AFAIK, GS succeeds because they listen to their risk people." (silverlake)

share|improve this answer

Goldman Faces Technology Issue With Spinoff: (published on Thursday, 5 Aug 2010 | 9:19 PM ET )

Goldman Sachs' plan to spin off its proprietary trading business has run into an unexpected technology glitch that has sent the Wall Street firm scrambling to hire computer programers and project managers.

The problem is that Goldman's traders use a special computer language called "Slang" that was developed for internal use only. That language plays a vital role in Goldman's prop trading, including it's computer driven high-frequency trading.

Goldman has decided the new spin-off won't get the rights to Slang, according to a person familiar with the matter.

As a result, Goldman is rushing to translate its trading programs into a more standard computer code usable by the new spin-off trading company.

Recruiters around New York have been contacted to bring on new tech talent to rebuild Goldman's trading operations. The recruitment drive is cloaked in secrecy, however.

At initial stages, potential recruits are not even told that Goldman is the client.

share|improve this answer
1  
Also, see here: Wilmott Forums | Goldman Sachs and Slang – Mr. X Aug 6 '10 at 16:39

More likely it is Erlang:

share|improve this answer
6  
nope, its in Slang :) – rbp Nov 28 '11 at 23:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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