I am trying to understand the IBrokers package, and when reading its Real Time vignettes, at the end of section 2.4.1, the author of the package, Jeffrey A. Ryan, wrote:
[...] to request the current time from the TWS, one needs to send the code for "Current Time"(.twsOutgoingMSG$REQ CURRENT TIME): "49" and the current version number of the specific request. In the case of current time, the version is simply the character "1".
Scanning through the source code of the IBrokers package, i have noticed that the author uses different VERSION number for different requests (e.g. for reqMrktData, VERSION = 9). Whoever, when I, looked at the Interactive Brokers API document, for the reqMktData() function, i see that the function doesn't require a "version number" as a parameter.
I have also tried to look for a general explanation to what a version number of a specific request, and when/where we might need it, but i couldn't find any.
I would appreciate if someone can provide me with an explanation to that "VERSION" variable, what it's meant to do/achieve, and how/where we can find a list of version number for various request to the Interactive Brokers API.
Thank you in advance
API evolution issues.
Look at
class EClientSocket
in the Java (or C++) API client library code. Jeff Ryan probably picked up / had to pick up the VERSION numbers from here.Basically, as the IB Platform / Servers' capabilities evolved, there were older as well as newer versions of Client APIs in use by customers. Thus, the IB server is able to handle requests from older versions of IB API Clients as well as newer ones. The VERSION helps the server distinguish which version of the API call it's dealing with.
For example, newer versions of the IB Client API can
reqMktData()
for entire Combos with multiple Legs in one shot, which older Clients could not do. Thus, as you noted, it is 1 for the simpler API which did not evolve, such ascancelHistoricalData()
,cancelScannerSubscription()
etc;, but can be as high as 7 or 9 for the APIs which tend to evolve with time, such as reqMktData().In more low-level terms, the VERSION tells the server what parameters the Client is going to pass on the Socket immediately after
send()
-ing theVERSION
. Below is a code excerpt fromreqScannerSubscription()
. Note thesend(VERSION);
right after thesend(REQ_SCANNER_SUBSCRIPTION);
(Note that there are TWO other types of version numbers : the server-side (IB Server / Platform) version number, and the IB TWS Client API version number! These are separate from the per-API VERSION that you are concerned with. Whether IB really needs a per API call VERSION which is separate from the IB Client version is not immediately obvious to me, but that's how they roll right now).
Apologies for a rambling answer; one look at
EClientSocket.java
will clear it up! :-)Client version history at the top of EClientSocket.