Accessing Xetra and Eurex exchange systems Introduction to the technical interface Values API (C) Michael Härtfelder, 2003 <michael@haertfelder.com> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PrefaceHow are buy and sell stock orders transferred to their final destination, the stock exchange? From the bank's customer view the first step is obviously to enter all necessary information into some online brokerage forms on certain internet web pages. Alternatively the orders can be entered into the banks internal securities order management systems on behalf of the customer or fund asset managers.Step by step they are checked for validity and plausbility like expiration date, buying power and many more criterions. Having passed all these filters successfully they will reach a status where they are ready to be send to the stock exchange. Depending on the entered target stock exchange the security order is handed over to a specialized order management system which prepares the data individually for the transfer to the stock exchange. The target stock exchange can be selected from a set of existing exchanges provided that the security paper is listed at this exchange and the bank is an official trading member at this exchange.
Possible exchanges for the german cash market are either the leading trading platform XETRA
(driven by the Deutsche Boerse, Frankfurt), regional exchanges, bank inhouse trading ECNs or even foreign
exchanges. The following introduction will give a brief overview about the technical interface of the XETRA and EUREX trading system. This programming interface (called "Values API") of both exchanges is very related. The technical framework correspond very closely and will be merged more and more with every new release.
This article focusses on the technical programming interface Values API. Of cause this article can not be a complete overview or even a comprehensive documentation. It is only meant to be a small insight into how to access the central trading system. Every Xetra/Eurex Values API session consists of a pair of an enclosing VCI_CONNECT/VCI_DISCONNECT and several VCI_LOGIN/VCI_LOGOUT calls. These initial/final general calls establish a valid Values API connection resp. a valid trader connection to the trading system with all security features and the permission environment. Nested inside such a Values API session all the other function calls are embedded. As suitable samples one function call to the XETRA system and one function call to EUREX are presented. The corresponding parameters are described in more detailed and possible values are listed. A list of all currently available functions can be found here for XETRA and for EUREX. The Values API interface itself is implemented in C. However this doesn't mean that the bank securities management system must be written in C(++) as well. Often the inhouse core main applications are written in Java and the data is passed through JNI technology to a C(++) module which in turn handles the communication traffic with Values API. A couple of header files are provided by Deutsche Boerse/Eurex. They contain all necessary pre-defined data structures and constants. Whenever a constant name (consisting of only capital letters) is mentioned below it refers to one of these already existing declarations. For a complete list of constants see the official documentation.
XETRA function "Enter Order"In general most of the Values API calls refer to the following scheme. The Values Api function passes
ReqCntrlT reqControl; SubmitReqDataT reqData; AppCntxtDataT *cntxtData; StatusDataT status; ... VCI_Submit(&reqControl, &reqData, orderCallback, cntxtData, &status); switch (status.techComplCode) { case ELB_TECH_OK: ... break; case ELB_TECH_INVALID_PARAMETER: case ELB_TECH_INTERNAL_ERROR: case ELB_TECH_NOT_CONNECTED: case ELB_TECH_TOO_MANY_PENDING_REQUESTS: case ELB_TECH_NOT_LOGGED_IN: ... break; default: printf("Unknown Error=[%d] in vapienterorder\n", status.techComplCode); break; }The general request structure contains global parameters for the current function and is part of every call to Values API.
At a first glance the second parameter structure seems to be very simple. It contains only two fields. However pay attention to the pointer definition of the variable appReq. Part of every function call is the allocation of an individual object which contains the specific current data. The address of this data structure will be assigned later to this appReq pointer.
As mentioned above for every call a request structure must be allocated and filled with the appropriate data. In case of the function Xetra Enter Order the necessary pre-defined structure need to be retrieved from the header file rfmorent.hxx and looks like:
reqData.appReqBlockSize = sizeof(rfmorentT); reqData.appReq = (pRfmorentT)malloc(reqData.appReqBlockSize);
Every successful call to Values API will be answered with a callback from Values API. Having finished a call through VCI_SUBMIT means only that Values Api accepted the call syntactically and had passed some minor plausibility checks. It does not mean that the request data was passed successfully to the final trading system and is already placed in the orderbook. The actual result with the acceptance values from XETRA core system is returned in a separate callback to the function being declared in the initiating request call. It is very important to know that this callback call is perform asynchronously depending from the system load and the network traffic. This implies that the banks inhouse securities management system must implement a comprehensive thread mechanism to coordinate outgoing requests and corresponding incoming responses. It remains to the backend system software architects if they use one callback function for multiple different possible callbacks and split up the different messages inside this multi-purpose function or use different callback functions right from the beginning. The callback function should be implemented like:
static void enterOrderCallback(ReqCntrlT *reqCntrl, CallBkAppDataT *appData, AppCntxtDataT *cntxt, StatusDataT *status)The appData points to a structure which contains (in the case of success) e.g. the assigned XETRA order number. This key value identifies the order uniquely in subsequent calls and responses (e.g. Order execution confirmations and Trade confirmations). Up to now nearly all the mentioned data structures contain only fields required by the XETRA trading system. Under certain circumstances the client securities management systems need some extra fields to remember some status or help values which are valid at the time of request. Keep in mind that the response to a previous request can roll in asynchronously possibly 20 messages later. To avoid difficult status maintenance management it is possible to attach some accompanying help information. The variable data structure can be defined by the user dynamically or even be omitted completely.
As you may have noticed there is a parameter cntxt among the parameters of the callback function. The same context stuff which is send with the request to XETRA will be received in the callback function as third parameter. Obviously every single call to Values API yields a result, either success or an error. The structure "status" will be filled by Values API with the particular degree of completion. Moreover it is broken down into a functional and a technical part.
EUREX function "Inquire Own Single Leg Order"Of cause for the EUREX platform there is a similar function for entering an option or future order like the one presented above for the XETRA stock market. However in order to show other aspects of the Values API interface another function is taken to demonstrate the EUREX access. The main task of the function "Inquire Own Single Leg Order" is not to push something into the trading system but to retrieve information from it. For some given future or option values a couple of important information values are returned.Since there are two Values API interface functions to inquire own orders the prefix "Single Leg" is used to distinguish the current one from the other "Double Leg" order.
ReqCntrlT reqControl; SubmitReqDataT reqData; AppCntxtDataT *cntxtData; StatusDataT status; ... VCI_Submit(&reqControl, &reqData, inquireCallback, cntxtData, &status); switch (status.techComplCode) { case ELB_TECH_OK: ... break; case ELB_TECH_INVALID_PARAMETER: case ELB_TECH_INTERNAL_ERROR: case ELB_TECH_NOT_CONNECTED: case ELB_TECH_TOO_MANY_PENDING_REQUESTS: case ELB_TECH_NOT_LOGGED_IN: ... break; default: printf("Unknown Error=[%d] in vapiinquiresinglelegorder\n", status.techComplCode); break; }As you may have expected the first data structure ist the same as in XETRA. The fields are filled correspondingly. Differing from the first example EUREX_XID is assigned to reqControl.dbApplId and DRIV_INQUIRE_OWN_SINGLE_LEG_ORDER_RID to reqControl.reqId. Analog the two last parameters cntxtData and status have the same meaning and structure as their XETRA counterparts. The structure reqData works similarly except the fact that appReq points to another request structure. Depending on wether the order is a Future or an Option different data structures must be used. For Futures:
reqData.appReqBlockSize = sizeof(futInqOwnSLegOrdrRequestT); reqData.appReq = (futInqOwnSLegOrdrRequestT *)malloc(reqData.appReqBlockSize);or for Options:
reqData.appReqBlockSize = sizeof(optInqOwnSLegOrdrRequestT); reqData.appReq = (optInqOwnSLegOrdrRequestT *)malloc(reqData.appReqBlockSize);Since both sibling structures are very similar we present only the Option data structure in more detail:
The callback function for the response message should be defined like:
static void inquireownsinglelegCallback(ReqCntrlT *reqCntrl, CallBkAppDataT *appData, AppCntxtDataT *cntxt, StatusDataT *status)The CallBkAppDataT is a structure which contain a pointer void *appRespData which in turn point to the actual response data. In the case of the function Inquire Single Leg Order this response structure is depicted in parts below.
Advanced considerationsAs already mentioned the introduction on this web page can only be a very short extract from the complete Values API and GATE architecture. There are a lot of advanced issues like
If you have questions or comments let
|