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

After years of no programming I am on my way to learn C++ on my Mac OSX. My eager goal is the creation of an algorithmic/automatic trading software for use with Interactive Brokers.

Now, I downloaded their API for Mac OSX and the docs. But I get the notion that the API for MacOSX is only for usage with Java?

I case I am wrong: I would be very happy if someone could help me with a few lines of C++ for usage on the IB-API, e. g. opening a session or loading marketdata for a security?

Btw, I did that with R and after having found some examples it was quite easy to use.

Thanks.

share|improve this question
1  
Looking at the download instructions at interactivebrokers.com/en/control/… it sure does seem like it's only meant for Java. Yucko! If nobody responds here, you might get some decent feedback on Interactive Broker's discussion forums listed at the bottom of the API web page – Michael Dautermann Feb 28 '12 at 13:07
Great idea. Thanks. – A.K. Feb 28 '12 at 13:46

1 Answer

IB also provides the so called "Posix C++ API" which should work on MacOSX (It's stupidly included within the twsapi_unixmac_*.jar archive).

There is an autotools based project (twsapi) from this original IB code which builds fine on MacOSX, see https://github.com/rudimeier/twsapi

A more exciting example of how to use twsapi in practice you may find in the twstools project there: https://github.com/rudimeier/twstools

share|improve this answer
OK. Thanks for the links. – A.K. Feb 28 '12 at 18:52
...and thanks for the code! – BD at Rivenhill May 15 at 18:55

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.