What automated trade execution software are other members using for automated currency and forex trade execution?
Hi x_diver,Quote from x_diver:
I'm using TT's X_TRADER API to automated a strategy that I have involving CME FX futures and Eurodollars. I like it.
Quote from nononsense:
Hi x_diver,
I may be wrong on this, but you are possibly the only person on ET ever writing about actually programming against TT's API.
How did you get your software debugged? Do they offer some kind of simulator or demo-IB style that will work with API interaced user programs?
What language did you use in your TT API application?
Be good,
nononsense
Hi x-diver,Quote from x_diver:
The reason that there's probably no discussion here is because TT has a private forum in which discussion and support of the XT API is done. It's at:
http://devnet.tradingtechnologies.com
but you'll need an account to access it. You can apply for an account on this site. I found some initial information at:
http://www.tradingtechnologies.com/blue_custom_api.html
The XT API is essentially a set of COM objects that give me access to get prices, get/send orders, and get fills. I have automated some strategies to submit orders based on market data. I use VB but you can use C++ or C# or ... I debug directly in my IDE. They have a simulation gateway called TTSIM which I use to test everything completely before I ever let it loose in production. It has a utility called TTtrainer that I use to record the markets I need which I then play back through TTSIM.
I'm also using their RTD server that allows me to get direct access to this data in my Excel spreadsheets. It's a handy item.
I've recently been writing some automated strategies on Linux and plan to connect to their FIX Adaptor. It gives the same functionality but communication is done with it over a socket in the FIX protocol. This is cool for techies like me.