Tell me more ×
Quantitative Finance Stack Exchange is a question and answer site for finance professionals and academics. It's 100% free, no registration required.

I would like to automate my trading strategies.

My strategies are not high-frequency and are written in Python.

I have a trading account in Interactive Brokers, and I know some non-official Python libraries (such as ibPy and swigPy) that are an interface to the Java API and are not officially supported.

Is there another broker that has a better stock trading API for Python?

Inspired by Which brokers offer a .NET stock trading API?.

share|improve this question

3 Answers

up vote 2 down vote accepted

I know of no broker that provides an official, supported Python API. If you are at Interactive Brokers you can consider using their FIX gateway, but that comes with additional cost. QuickFix provides a Python API.

share|improve this answer

TradeStation offers python support via their WebAPI. Check it out here: http://tradestation.github.io/webapi-docs/

share|improve this answer

You know, Python can be compiled into Java Byte code, and use java libs. Google 'jython', or checkout this article on IBM's site IBM - Charming Jython

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.