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

Do you know an API that lets you trade with real life stock or currency?

If so, please describe your experience:

  • ease of development
  • commissions
  • sandbox environment?
  • etc.
share|improve this question
1  
And subvert Wall Street's control over the "cost" of trades? Hahahaha. That's funny. – S.Lott Apr 13 '09 at 17:34
@S.Lott-I assume you'd still pay the transaction fees. – John MacIntyre Apr 13 '09 at 17:35
3  
They do exist, but the ones I have seen are crazy expensive. – Chris Ballance Apr 13 '09 at 17:37
8  
Just don't accidentally code an infinite loop... – ceejayoz Apr 13 '09 at 18:36
@ceejayoz-It would either be a really good day or a really bad day if you did! ... either way it would be a life changing event! ;-) – John MacIntyre Apr 13 '09 at 18:41

11 Answers

up vote 12 down vote accepted

AFAIK, TradeStation is the most famous of the lot. Most other trading softwares provide APIs (NinjaTrader, MetaStock etc). FWIW, there are even competitions of automated trading systems -- see this.

Also, this is something that the exchange has to support and your broker has to allow. Most exchanges I know of, do not allow automated trading without prior permission.

share|improve this answer
FWIW, I don't think the MetaStock API allows you to make trades; their software is strictly Technical Analysis, so it just gets prices. – Jeff Barger Apr 13 '09 at 17:52
@Jeff Barger: There's some kludge: <elitetrader.com/vb/showthread.php?threadid=17343>; – dirkgently Apr 13 '09 at 18:00

There are many brokers who will give you access to an API which lets you trade. Obviously you will be paying commissions to them as well as the bid/ask spread which may be wider than the direct markets. They will all differ in the types of instrument that they allow you to trade.

If you want an easy way in, you can use shrink-wrapped software such as Tradestation (horrible proprietary language), NinjaTrader (a little better, C#-based), or SmartQuant (better, C#-based). These generally have pre-built interfaces to a number of brokerages who will actually execute the trades. InteractiveBrokers also has a direct API but they have a reputation for being a pain to deal with.

I would recommend checking alternative forums, such as EliteTrader which has a wealth of information on the relative merits of different brokerages. There are also plenty of folks on there trading through APIs.

share|improve this answer
i think those services does not offer real time data :( – frabiacca Nov 4 '10 at 10:24

Try TD Ameritrade - they have a nice API, relatively low trading fees, and a good help forum . Link to their API offering overview.

share|improve this answer
4  
TD Ameritrade has huge costs. I mean - why pay $10 per trade when you can use Interactive Brokers, and pay $1 per trade? Its no contest. – Gravitas Aug 11 '10 at 11:15
API moved: tdameritrade.com/api.html – Adam Monsen Dec 6 '11 at 21:43
One reason, because Interactive Brokers has high account minimums. TD is like $100 or something ridiculously small. – extracrispy Mar 14 at 5:59

Most electronic stock exchanges don't provide an API, they provide a message specification. To get them to accept your messages (i.e. to trade directly with them), you will have to spend a very large amount of money. and become a member of the exchange - that's what IBs do. Even a live market data feed (which you would need in order trade sensibly) can be ridiculously expensive.

share|improve this answer
1  
Correct. You must be a member to trade directly, so effectively you are talking to an API for a 'broker/dealer' that talks to another API directly to the exchange. The exchanges make a good portion of their money from selling real time data feeds. – Joshua Davis Nov 27 '10 at 2:50

This is similar to a question I asked a couple of years ago: What online brokers offer APIs?

I would recommend looking into Interactive Brokers, which is the one I ended up choosing. Their API supports multiple languages including Java, C++, ActiveX and Excel's DDE. You can effectively do just about anything via the API that you can do using their fairly robust trading platform.

As a broker alone it's hard to beat IB's crazy low commissions (most of my orders are so low they get rounded up to the $1 minimum commission per order). Combine that with a fairly straightforward API and it's hard to beat.

Also, take a look at my question (linked above, and here) for more information on brokers that offer APIs.

share|improve this answer
1  
Just to add to what was said about InteractiveBrokers, they are high commissions if you trade a lot of shares, e.g. more than 1500. The commissions are per-share traded. They have commission examples of $150,000 on their website for trading millions of shares. – user758309 May 17 '11 at 23:40
To add to Anon's comment, the commissions are here: individuals.interactivebrokers.com/en/p.php?f=commission (For US is is 0.005 USD/share, with a max of 0.5% of trade value; so a $150K commission implies buying 30 million shares of something...) – Darren Cook Aug 26 '11 at 13:57

I've just started playing around with TradeKing's API. Its dead simple and uses oauth. The $5 trade commission isn't bad either.

E-trade also has an api, but you have to go through some hoops to get production access. They also provide realtime streaming via a comet interface. There don't seem to be any libraries out there for etrade either except for the java ones etrade provides.

share|improve this answer

I believe there is an API for working with ETrade and some of the other trading software. I don't think you're going to find an API for executing trades without making use of a commercial product, though. If you're trying to do some analysis of trades, though, there are APIs available for retrieving quotes, listening to ticks, getting historical data for a symbol, etc. As I said at the beginning, many of the existing commercial products have an API for writing code to work with them.

share|improve this answer

Go through the links on this page.

Lists a number of open source api's. Haven't tried any yet, but planning to check out active-quant.

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

JunoTrade offers both a web based http(s) API and a streaming .NET API DLL which works with C++, C#, etc. The API offers quotes and order management functions. I use it to trade and it is rock solid and fast. their website

share|improve this answer

Contact your target Stock Exchange for trading API and test server. If your target Stock Excnage is on OMX platform, you will be provided with X-Stream API (unmanaged c++) and docs.

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.