Hey everyone, I was wondering how would I start programming an interface to trading stocks in Etrade in python. I am attempting to make an automated trading bot, but there is no api publicly available for automated trading with Etrade. Thanks in advance. ^^
Asked
Active
Viewed 7,201 times
8
-
Etrade now has an API: https://us.etrade.com/e/t/activetrading/api – Chris Dutrow Feb 11 '12 at 23:37
4 Answers
9
For E-trade I could only find this: http://code.google.com/p/pyetrade/ . It uses urllib2 to access the site like a user would. But because of lack of an official API there is no guarantee that anything will keep working.
Interactive Brokers has an extensive API for automatic trading, also from Python. I can confirm that one works.

wump
- 4,277
- 24
- 25
1
Etrade has developer APIs now, they also have sample applications for java and python.

Sanjay Devarajan
- 19
- 3
0
https://apisb.etrade.com/docs/api/account/api-account-v1.html
Fairly stable API, although some of the documented features don't work (all the XML returns work, but JSON returns are spotty) pyetrade interface (https://github.com/jessecooper/pyetrade) works well and has been stable for many years.

rocketman
- 180
- 3
- 9