Is there a wrapper for the Interactive Brokers Java API on linux? Their documentation does not look very good.

link|improve this question

I don't know anything around but I have done some apps based on IB Java API. If you post your questions I can help – perissf Oct 25 '11 at 10:31
feedback

3 Answers

Interactive Brokers do say they support their Java API on Unix (which I assume includes Linux). See http://www.interactivebrokers.com/en/p.php?f=programInterface

Also, the see the documentation at http://www.interactivebrokers.com/php/apiUsersGuide/apiguide.htm (click on Java in the left-hand frame).

If there's something specific you're having difficulty with, you might get better responses if you describe the exact problem you're having.

link|improve this answer
Yes it does work on linux. I'm just looking for a wrapper. I'm having problems specifically with the documentation. I think that its low quality documentation. – broiyan Oct 26 '11 at 0:25
feedback
up vote 1 down vote accepted

Write your own wrapper for it.

link|improve this answer
feedback

I've used the IB Java API on Linux. The best "documentation" at the time was the source code for their demo app. Looking at an old version I still have laying around (9.63), the demo client is in jtsclient.jar. I don't use IB any more, so no idea if that's still what it's called, if it's a separate download, etc.

I also had some success using the Java API directly from jython.

But the thing that worked best for me was to use the IBpy library, which completely wraps the Java API with python. Much nicer to deal with. I don't know if it's still compatible with the current IB API -- I see there hasn't been a release for while. http://code.google.com/p/ibpy/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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