unatnahs57
1. I am making data request as: mClientSocket.reqMktData(id, contract, "", false);
toggle quoted message
Show quoted text
which returns the "last price and quantity in separate callbacks". So, using the post #24461 that you suggested I made the request as: mClientSocket.reqMktData(id, contract, "233", false); which returns Last Trade tick as: id=0 RTVolume=3066.00;4;1373851042866;1108;3065.15771661;false I can now construct the LastTick object instance used in TickUtils.jar. (Not yet sure if BidTick, AskTick can be done this way, but I'll investigate further, I wanted to reply at the earliest). ++++++ 2a. I also noticed an interesting thing. Request made with only "233" still gives me IB response for tickPrice, tickSize methods, so I'm actually using more bandwidth. 2b. Also, please take a look at the data below (I tested $NQ_F) 2013.07.14 20:17:14:836,0,6.0 2013.07.14 20:17:15:759,0,7.0 2013.07.14 20:17:20:208,0,6.0 id=0 lastTimestamp=1373851042 <-tickString() response 2013.07.14 20:17:21:989,4,3066.0 <-TRADE_PRICE 2013.07.14 20:17:21:993,5,1.0 <-TRADE_SIZE 2013.07.14 20:17:21:999,8,1105.0 <-VOLUME 2013.07.14 20:17:22:004,1,3065.75 2013.07.14 20:17:22:014,0,4.0 2013.07.14 20:17:22:021,0,4.0 2013.07.14 20:17:22:025,3,6.0 id=0 RTVolume=3066.00;4;1373851042866;1108;3065.15771661;false 2013.07.14 20:17:23:132,5,3.0 <-TRADE_SIZE 2013.07.14 20:17:23:233,8,1108.0 <-VOLUME 2013.07.14 20:17:23:324,0,5.0 2013.07.14 20:17:23:328,3,7.0 2013.07.14 20:17:24:052,0,6.0 i) There is almost a 030ms (average seems to be like 040ms) lag between when trade is executed and when we get RTVolume response. ii) I get a tickString response timestamp, then I get a trade, trade size, tickString Tick data, then trade size and then volume upto that point. Seems 2nd trade_size is not preceded with TRADE_PRICE if the price is same as last traded price. iii) Seems we can construct TRADE ticks using tickPrice stream ourselves, although VWAP might get messed up if data breaks in between. I'll be looking at this for a bit, but thanks a lot for your reply. S. --- In TWSAPI@..., "rwk2095" <r@...> wrote:
|