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

So I'm getting really sick of E*TRADE and, being a developer, would love to find an online broker that offers an API. It would be great to be able to write my own trading tools, and maybe even modify existing ones.

Based on my research so far, I've only found one option. Interactive Brokers offers a multi-language API (Java/C++/ActiveX/DDE) and has some fairly decent commission rates to boot. I want to make sure there aren't any other options out there I should be considering. Any ideas?

Update: Based on answers so far, here's a quick list...

share|improve this question
I'm curious why you're sick of etrade. I just created an account. Is it their OAuth implementation that bugs you? I'm having a bit of trouble with that. Are there other reasons not to go with etrade? – HAL9000 Mar 21 '12 at 23:34
I was able to get etrade oauth working after taking a look at jejernig's answer here – HAL9000 Mar 22 '12 at 18:35

12 Answers

up vote 15 down vote accepted

I vote for IB. I've used them in the past as was quite happy. Pinnacle trading also has an api ( pcmtrading.com ) but I haven't used them.

share|improve this answer
IB does seem to be the best option, and so far the only one with a wide range of language support. – Wilco Sep 29 '08 at 15:42
Language support doesn't necessarily translate into multiple platform support though (lots of APIs still require a DLL) – nall Sep 15 '11 at 5:04
2  
What's IB's price per trade? I can't parse their marketing materials. – Adam Monsen Dec 6 '11 at 20:56

Heres a solid list of stock broker apis and a quick review of each I found: http://www.earnalyst.com/reviews/review-stock-brokers-that-provide-apis-to-their-services/

share|improve this answer
The link to the TD Ameritrade API in that article is incorrect. Should be tdameritrade.com/api.html – Adam Monsen Dec 6 '11 at 20:59
Your reviews would be much more helpful if they had API costs as well as trade costs. – Eric Mar 25 at 21:48

Looks like E*Trade has an API now.

For access to historical data, I've found EODData to have reasonable prices for their data dumps. For side projects, I can't afford (rather don't want to afford) a huge subscription fee just for some data to tinker with.

share|improve this answer

As of this posting it looks like TradeKing is working on an API. Not sure what the future of it is though.

share|improve this answer
There seems to be a HTTP API: developers.tradeking.com/documentation/getting-started – argentpepper Jan 20 '12 at 15:10

I've been using parts of the marketcetera platform. They support all kinds of marketdata sources and brokers and you should easily be able to add more brokers and/or data providers. This is not a direct broker API of course, but that helps you avoid vendor lock-in so that might be a good thing. And of course all the tools they use are open source.

share|improve this answer

You may also want to take a look at TD Ameritrade .NET SDK hosted at CodePlex.com

share|improve this answer

LMAX have .NET and Java API, as well as their native XML/JSON protocol

share|improve this answer

There are a few. I was looking into MBTrading for a friend. I didn't get too far, as my friend lost interest. Seemed relatively straigt forward with a C# and VB.Net SDK. They had some docs and everything. This was ~6 months ago, so it may be better (or worse) by now.

IIRC, you can create a demo account for free. I don't remember all the details, but it let you connect to their test server and pull quotes and make fake trades and such to get your software fine tuned.

Don't know much about cost for an actual account or anything.

share|improve this answer

Ameritrade also offers an API, as long as you have an Ameritrade account: http://www.tdameritrade.com/tradingtools/partnertools/api_dev.html

share|improve this answer

JunoTrade has a .NET API that works well. It has all data you can think of. I do not know the price, but their email is on their website.

share|improve this answer

Alex, JunoTrade also has a web based API, so you do not need to use .NET unless you need too. Their web api rocks and has historical data built in, extremely simple to use, I am running my "black box" on it right now.

share|improve this answer

Only related with currency trading (Forex), but many Forex brokers are offering MetaTrader which let you code in MQL. The main problem with it (aside that it's limited to Forex) is that you've to code in MQL which might not be your preferred language.

share|improve this answer

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.