Join the 80,000 other DTN customers who enjoy the fastest, most reliable data available. There is no better value than DTN!

(Move your cursor to this area to pause scrolling)




"Everything is working great ! Very impressive client. The news refreshes better and is more pertinent than the ******* feed I paid $ 100/month for. I Also like the charts a lot." - Comment from Leon
"I've never had DTN go out on me since switching. ******* would go down a couple times every month when I was using them." - Comment from Bryce in AL.
"I am a hedge fund manager here. It’s funny, I have a Bloomberg terminal and a Bridge feed, but I still like having my DTN feed!" - Comment from Feras
"I cannot believe what a difference it makes trading with ProphetX!" - Comment from Bruce in Los Angeles
"If someone needs the best quality data and backfill beyond what their broker provides at a rate that is the best in the industry, I highly recommend IQFeed." - Comment from Josh via Public Forum
"Everything is working amazing now. I'm already impressed with the true-tick feed of IQFeed and it's ability to support my 480 symbol layout." - Comment from Tyler via Email
"I "bracket trade" all major news releases and I have not found one lag or glitch with DTN.IQ feed. I am very comfortable with their feed under all typical news conditions (Fed releases, employment numbers, etc)." - Comment from Public Forum
"I just wanted to let you know how fast and easy I found it to integrate IQFeed into our existing Java code using your JNI client. In my experience, such things almost never go so smoothly - great job!" - Comment from Nate
"I was with ******* for 4 years at $230 a month, this is a huge savings for me, GOD BLESS YOU PEOPLE," - Comment from T.S. via Email
"Thanks for all of your help. Great customer service deserves to be recognized which one the reasons I've been a customer of DTN for over 10 years!" - Comment from Stuart
Home  Search  Register  Login  Recent Posts

Information on DTN's Industries:
DTN Oil & Gas | DTN Trading | DTN Agriculture | DTN Weather
Follow DTNMarkets on Twitter
DTN.IQ/IQFeed on Twitter
DTN News and Analysis on Twitter
»Forums Index »Archive (2017 and earlier) »IQFeed Developer Support »need some help for Messate type
Author Topic: need some help for Messate type (7 messages, Page 1 of 1)

milcloud
-Interested User-
Posts: 8
Joined: Oct 14, 2016


Posted: Oct 14, 2016 05:05 AM          Msg. 1 of 7
i have register for Developer, and now i have got the API Doc,also can get data from server, but i still have some questions(can not get answer from old posts in forum)

tick data i have used is for QCLX16

1.About level 1 P message?
i have noticed, after i subscribe a symbol, the first data i received is P message, then followed by normal Q Message, also when the trading session closed, it seems server will send some P message. so what condition we will receive P message again, and do server send it some time or every day after session closed for sure?

2.About Trade Type
C - Last Qualified Trade.
E - Extended Trade = Form T trade.
O - Other Trade = Any trade not accounted for by C or E.
what these 3 types trade mean?
i accumulate trade tick into Bars, so i only use C type, or need to use both E and O ? if i sum all trade size up, can i get the same value with Total Volume in the data ?

3.About Settlement
s - A Settlement occurred.
the settle filed in the data stand for the settle price of last trading day, so do server send settlement price of currentday after market close?

4.About ohlc Message Contents
i have see P message contains ohlc and other types. and what condition we will get ohlc type in other time ?



thanks
Edited by milcloud on Oct 14, 2016 at 05:12 AM

DTN_Tim Walter
-DTN Guru-
Posts: 1238
Joined: Apr 25, 2006


Posted: Oct 14, 2016 07:10 AM          Msg. 2 of 7
Good morning.

P messages provide a current snapshot of the data on a given symbol. As to when else you might see these, we generally only send these out during the overnight hours as part of an overall system update which "refreshes" all of our data. Occasionally, if we find there was a correction that forces manual interaction to correct, like the open was set to 1.28 instead of 12.80, then we would push those out as a manual refresh during the day.

C = last qualified trade = a trade the exchange says should set a new last price.
E = Form T trades = Trades that happen before or after the market open.
O = Other trade - This could be anything, but commonly they are oddlots, trades less than 100 shares on equity items get this trade condition.

As to what you want to use to build bars, this is really a personal choice, if I were making software for others I would use C trades as my base and allow E and O trades to be turned on by the individual looking at the data. We use C and E trades to build our minute data and omit O trades. And while the exchange flags some trades as not setting a last, all trades set volume, so you would want to sum all trades even if not included in your bar data.

If you want to dig deeper into trade conditions and what more specifically makes for a last qualified trade, you can look at the exchange links below to get a better idea. It can be quite the rabbit hole. :)

http://nasdaqtrader.com/content/technicalsupport/specifications/utp/utdfspecification.pdf
7.5.1.1. UTP Trade Condition Matrix

https://www.ctaplan.com/publicdocs/ctaplan/notifications/trader-update/cts%20input%20spec%20v%202.7a_042215.pdf
Page 88 (Updated link)

3. This is something exclusive to futures and is sent shortly after market close and remains until the next day's close.

4. If a last qualified trade comes in with a new high, you will get a trade with a message contents of Ch so that you know it was a last qualified trade that set a new high. The same concept is used with the other olc flags.

Let me know if you have any follow on questions though.
Tim
Edited by DTN_Tim Walter on Oct 14, 2016 at 07:19 AM

milcloud
-Interested User-
Posts: 8
Joined: Oct 14, 2016


Posted: Oct 14, 2016 07:55 AM          Msg. 3 of 7
thanks for reply, i clearly understand now.

as i see another message, v type(which is not described in api doc)

this message received from time to time, i can not recognize any regular pattern?so what condition server will send v type message?

DTN_Tim Walter
-DTN Guru-
Posts: 1238
Joined: Apr 25, 2006


Posted: Oct 14, 2016 08:03 AM          Msg. 4 of 7
v means that a volume message was received from the exchange and that total volume has been updated by the server.

Normally the IQFeed client simply maintains the volume and increments as the trades come in, but in this case, we will take the exchanges message as the truth, update our value, and pass it on to you with the v flag, assuming you are watching the cumulative volume as part of your dynamic fieldset.

Tim

milcloud
-Interested User-
Posts: 8
Joined: Oct 14, 2016


Posted: Oct 14, 2016 09:01 AM          Msg. 5 of 7
i am digging into the bar generation. let us take an example.
QCLX16
2016-10-14 09:07:00 the interval Vol is 678

but the start and the end tick of that bar is
Date Time TotalVol
20161014 90559 141933
20161014 90600 141937 start
.
.
.

20161014 90657 142622 end

so the interval from 20161014-090600 to 20161014-090657's total vol is 142622-141933=689
but the bar get form server is 678

as i think. we can get same volume with the 2 method. and i have searched other time span, they are different mostlyl. so what is the reason of that?
or which way IQFeed use to generate the interval bar ?
Edited by milcloud on Oct 14, 2016 at 09:02 AM

milcloud
-Interested User-
Posts: 8
Joined: Oct 14, 2016


Posted: Oct 14, 2016 10:27 AM          Msg. 6 of 7
i have get tick data from sample program.


Request Sent Successfully:
HTT,QCLX16,20161014,20161015,,104500,104559,,,
S,CURRENT PROTOCOL,5.2

2016-10-14 10:45:59.546152,50.38,2,261396,50.37,50.38,17643809,C,112,01,
2016-10-14 10:45:59.544030,50.38,2,261394,50.37,50.38,17643796,C,112,01,
2016-10-14 10:45:59.541532,50.38,2,261392,50.37,50.38,17643776,C,112,01,
2016-10-14 10:45:59.536669,50.38,1,261390,50.38,50.39,17643727,C,112,01,
2016-10-14 10:45:59.535758,50.38,5,261389,50.38,50.39,17643720,C,112,01,
2016-10-14 10:45:59.535347,50.38,1,261384,50.38,50.39,17643712,C,112,01,
2016-10-14 10:45:59.535241,50.38,1,261383,50.38,50.39,17643709,C,112,01,
2016-10-14 10:45:59.533360,50.38,2,261382,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261380,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,4,261379,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261375,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261374,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,3,261373,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261370,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261369,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261368,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261367,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261366,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:59.533360,50.38,1,261365,50.38,50.39,17643699,C,112,01,
2016-10-14 10:45:58.692532,50.39,1,261360,50.38,50.39,17643651,C,112,01,
2016-10-14 10:45:58.692532,50.39,1,261359,50.38,50.39,17643651,C,112,01,
2016-10-14 10:45:58.691969,50.39,2,261358,50.38,50.39,17643643,C,112,01,
2016-10-14 10:45:58.691969,50.39,2,261356,50.38,50.39,17643643,C,112,01,
2016-10-14 10:45:58.691002,50.39,1,261354,50.38,50.39,17643637,C,112,01,
2016-10-14 10:45:58.689934,50.39,1,261353,50.38,50.39,17643624,C,112,01,
2016-10-14 10:45:58.689934,50.39,1,261352,50.38,50.39,17643624,C,112,01,
2016-10-14 10:45:58.689934,50.39,1,261351,50.38,50.39,17643624,C,112,01,
2016-10-14 10:45:58.559335,50.38,1,261349,50.38,50.39,17643593,C,112,01,
2016-10-14 10:45:58.532345,50.38,1,261348,50.38,50.39,17643573,C,112,01,
2016-10-14 10:45:58.526152,50.38,1,261347,50.38,50.39,17643538,C,112,01,
2016-10-14 10:45:58.525011,50.38,1,261346,50.38,50.39,17643522,C,112,01,
2016-10-14 10:45:58.522456,50.38,2,261345,50.38,50.39,17643487,C,112,01,
2016-10-14 10:45:58.522456,50.38,3,261343,50.38,50.39,17643487,C,112,01,
2016-10-14 10:45:58.520065,50.38,3,261340,50.38,50.39,17643460,C,112,01,
2016-10-14 10:45:58.519218,50.38,1,261337,50.37,50.38,17643448,C,112,01,
2016-10-14 10:45:58.517942,50.38,1,261336,50.37,50.38,17643435,C,112,01,
2016-10-14 10:45:58.517942,50.38,1,261335,50.37,50.38,17643435,C,112,01,
2016-10-14 10:45:58.516725,50.38,2,261334,50.37,50.38,17643420,C,112,01,
2016-10-14 10:45:58.516614,50.38,1,261332,50.37,50.38,17643417,C,112,01,
2016-10-14 10:45:58.516614,50.38,1,261331,50.37,50.38,17643417,C,112,01,
2016-10-14 10:45:58.514240,50.38,2,261330,50.37,50.38,17643396,C,112,01,
2016-10-14 10:45:58.514240,50.38,1,261328,50.37,50.38,17643396,C,112,01,
2016-10-14 10:45:58.514240,50.38,1,261327,50.37,50.38,17643396,C,112,01,
2016-10-14 10:45:58.513777,50.38,1,261326,50.37,50.38,17643389,C,112,01,
2016-10-14 10:45:58.513777,50.38,1,261325,50.37,50.38,17643389,C,112,01,
2016-10-14 10:45:58.513777,50.38,1,261324,50.37,50.38,17643389,C,112,01,
2016-10-14 10:45:58.513655,50.38,1,261323,50.37,50.38,17643386,C,112,01,
2016-10-14 10:45:58.505756,50.38,1,261322,50.38,50.39,17643311,C,112,01,
2016-10-14 10:45:58.505756,50.38,1,261321,50.38,50.39,17643311,C,112,01,
2016-10-14 10:45:58.505756,50.38,1,261320,50.38,50.39,17643311,C,112,01,
2016-10-14 10:45:58.505612,50.38,1,261319,50.38,50.39,17643308,C,112,01,
2016-10-14 10:45:58.505035,50.38,1,261318,50.38,50.39,17643305,C,112,01,
2016-10-14 10:45:58.505035,50.38,1,261317,50.38,50.39,17643305,C,112,01,
2016-10-14 10:45:58.505035,50.38,1,261316,50.38,50.39,17643305,C,112,01,
2016-10-14 10:45:58.505035,50.38,2,261315,50.38,50.39,17643305,C,112,01,
2016-10-14 10:45:58.505035,50.38,1,261313,50.38,50.39,17643305,C,112,01,
2016-10-14 10:45:58.505035,50.38,1,261312,50.38,50.39,17643305,C,112,01,
2016-10-14 10:45:58.505035,50.38,1,261311,50.38,50.39,17643305,C,112,01,
2016-10-14 10:45:58.504544,50.38,1,261310,50.38,50.39,17643300,C,112,01,
2016-10-14 10:45:58.483046,50.38,1,261309,50.38,50.39,17643288,C,112,01,
2016-10-14 10:45:58.079348,50.38,1,261308,50.38,50.39,17643268,C,112,01,
2016-10-14 10:45:58.036047,50.38,1,261307,50.38,50.39,17643260,C,112,01,
2016-10-14 10:45:57.341136,50.38,1,261306,50.38,50.39,17643210,C,112,01,
2016-10-14 10:45:57.341136,50.38,2,261305,50.38,50.39,17643209,C,112,01,
2016-10-14 10:45:57.341136,50.38,1,261303,50.38,50.39,17643209,C,112,01,
2016-10-14 10:45:57.341136,50.38,1,261302,50.38,50.39,17643208,C,112,01,
2016-10-14 10:45:57.341119,50.38,2,261301,50.38,50.39,17643207,C,112,01,
2016-10-14 10:45:57.289794,50.39,1,261299,50.38,50.39,17643198,C,112,01,
2016-10-14 10:45:57.098919,50.39,2,261298,50.38,50.39,17643044,C,112,01,
2016-10-14 10:45:57.096038,50.39,1,261296,50.38,50.39,17643027,C,112,01,
2016-10-14 10:45:57.096038,50.39,1,261295,50.38,50.39,17643027,C,112,01,
2016-10-14 10:45:57.095298,50.39,1,261294,50.38,50.39,17643018,C,112,01,
2016-10-14 10:45:57.095298,50.39,7,261293,50.38,50.39,17643018,C,112,01,
2016-10-14 10:45:57.094910,50.39,1,261286,50.38,50.39,17643015,C,112,01,
2016-10-14 10:45:57.094910,50.39,3,261285,50.38,50.39,17643015,C,112,01,
2016-10-14 10:45:57.094910,50.39,1,261282,50.38,50.39,17643015,C,112,01,
2016-10-14 10:45:57.080597,50.39,1,261281,50.39,50.40,17642954,C,112,01,
2016-10-14 10:45:57.079549,50.39,1,261280,50.39,50.40,17642946,C,112,01,
2016-10-14 10:45:57.078077,50.39,1,261279,50.39,50.40,17642936,C,112,01,
2016-10-14 10:45:55.702018,50.40,1,261278,50.39,50.40,17642917,C,112,01,
2016-10-14 10:45:55.700622,50.40,1,261277,50.39,50.40,17642905,C,112,01,
2016-10-14 10:45:55.617351,50.39,1,261276,50.39,50.40,17642901,C,112,01,
2016-10-14 10:45:55.599352,50.39,1,261275,50.39,50.40,17642898,C,112,01,
2016-10-14 10:45:55.492739,50.39,1,261274,50.38,50.39,17642817,C,112,01,
2016-10-14 10:45:55.491764,50.39,1,261273,50.38,50.39,17642806,C,112,01,
2016-10-14 10:45:55.491090,50.39,2,261272,50.38,50.39,17642797,C,112,01,
2016-10-14 10:45:55.490487,50.39,1,261270,50.38,50.39,17642790,C,112,01,
2016-10-14 10:45:55.490388,50.39,2,261269,50.38,50.39,17642787,C,112,01,
2016-10-14 10:45:55.488598,50.39,5,261267,50.39,50.40,17642764,C,112,8D,
2016-10-14 10:45:55.488598,50.39,2,261262,50.39,50.40,17642764,C,112,01,
2016-10-14 10:45:55.487637,50.39,1,261260,50.39,50.40,17642753,C,112,01,
2016-10-14 10:45:55.487637,50.39,1,261259,50.39,50.40,17642753,C,112,01,
2016-10-14 10:45:55.487637,50.39,1,261258,50.39,50.40,17642753,C,112,01,
2016-10-14 10:45:55.487637,50.39,1,261257,50.39,50.40,17642753,C,112,01,
2016-10-14 10:45:55.487637,50.39,1,261256,50.39,50.40,17642752,C,112,01,
2016-10-14 10:45:55.487637,50.39,1,261255,50.39,50.40,17642751,C,112,01,
2016-10-14 10:45:55.487620,50.39,1,261254,50.39,50.40,17642750,C,112,01,
2016-10-14 10:45:55.487598,50.39,6,261253,50.39,50.40,17642749,C,112,01,
2016-10-14 10:45:55.431707,50.40,1,261247,50.39,50.40,17642719,C,112,01,
2016-10-14 10:45:53.362619,50.40,1,261242,50.40,50.41,17642568,C,112,01,
2016-10-14 10:45:52.450126,50.40,1,261241,50.39,50.40,17642497,C,112,01,
2016-10-14 10:45:52.450126,50.40,1,261240,50.39,50.40,17642497,C,112,01,
2016-10-14 10:45:52.449851,50.40,2,261239,50.39,50.40,17642494,C,112,01,
2016-10-14 10:45:51.584359,50.40,1,261237,50.40,50.41,17642391,C,112,01,
2016-10-14 10:45:51.245064,50.40,4,261236,50.39,50.40,17642318,C,112,01,
2016-10-14 10:45:51.245064,50.40,2,261232,50.39,50.40,17642318,C,112,01,
2016-10-14 10:45:51.240476,50.40,1,261230,50.40,50.41,17642286,C,112,01,
2016-10-14 10:45:51.238068,50.40,1,261229,50.40,50.41,17642271,C,112,01,
2016-10-14 10:45:51.238068,50.40,1,261228,50.40,50.41,17642271,C,112,01,
2016-10-14 10:45:51.237172,50.40,1,261227,50.40,50.41,17642257,C,112,01,
2016-10-14 10:45:51.237172,50.40,1,261226,50.40,50.41,17642257,C,112,01,
2016-10-14 10:45:51.235336,50.40,1,261225,50.40,50.41,17642249,C,112,01,
2016-10-14 10:45:49.648201,50.40,1,261224,50.40,50.41,17642220,C,112,01,
2016-10-14 10:45:49.398250,50.40,1,261223,50.40,50.41,17642209,C,112,01,
2016-10-14 10:45:48.451857,50.40,1,261222,50.40,50.41,17642171,C,112,01,
2016-10-14 10:45:47.685895,50.41,1,261221,50.40,50.41,17642157,C,112,01,
2016-10-14 10:45:47.009410,50.40,5,261220,50.40,50.41,17642145,C,112,01,
2016-10-14 10:45:45.979730,50.40,1,261215,50.40,50.41,17642062,C,112,01,
2016-10-14 10:45:45.977243,50.40,2,261214,50.39,50.40,17642041,C,112,01,
2016-10-14 10:45:45.977243,50.40,2,261212,50.39,50.40,17642041,C,112,01,
2016-10-14 10:45:45.974605,50.40,1,261210,50.39,50.40,17642023,C,112,01,
2016-10-14 10:45:45.974540,50.40,1,261209,50.39,50.40,17642020,C,112,01,
2016-10-14 10:45:45.974368,50.40,9,261208,50.39,50.40,17642017,C,112,01,
2016-10-14 10:45:45.968506,50.40,3,261199,50.40,50.41,17641958,C,112,01,
2016-10-14 10:45:45.968506,50.40,2,261196,50.40,50.41,17641958,C,112,01,
2016-10-14 10:45:45.968506,50.40,1,261194,50.40,50.41,17641958,C,112,01,
2016-10-14 10:45:45.968506,50.40,1,261193,50.40,50.41,17641958,C,112,01,
2016-10-14 10:45:45.968506,50.40,1,261192,50.40,50.41,17641958,C,112,01,
2016-10-14 10:45:45.968506,50.40,1,261191,50.40,50.41,17641958,C,112,01,
2016-10-14 10:45:45.968506,50.40,1,261190,50.40,50.41,17641958,C,112,01,
2016-10-14 10:45:45.194442,50.40,1,261189,50.40,50.41,17641910,C,112,01,
2016-10-14 10:45:45.194442,50.40,4,261188,50.40,50.41,17641910,C,112,01,
2016-10-14 10:45:44.996675,50.41,1,261184,50.40,50.41,17641894,C,112,01,
2016-10-14 10:45:44.996666,50.41,1,261183,50.40,50.41,17641893,C,112,01,
2016-10-14 10:45:44.911051,50.40,1,261182,50.40,50.41,17641889,C,112,01,
2016-10-14 10:45:44.685754,50.40,2,261181,50.40,50.41,17641810,C,112,01,
2016-10-14 10:45:44.324684,50.40,1,261179,50.40,50.41,17641711,C,112,01,
2016-10-14 10:45:44.324684,50.40,1,261178,50.40,50.41,17641711,C,112,01,
2016-10-14 10:45:44.324684,50.40,1,261177,50.40,50.41,17641711,C,112,01,
2016-10-14 10:45:44.324684,50.40,1,261176,50.40,50.41,17641711,C,112,01,
2016-10-14 10:45:44.324684,50.40,1,261175,50.40,50.41,17641711,C,112,01,
2016-10-14 10:45:44.324684,50.40,1,261174,50.40,50.41,17641711,C,112,01,
2016-10-14 10:45:44.324684,50.40,2,261173,50.40,50.41,17641711,C,112,01,
2016-10-14 10:45:44.324684,50.40,2,261171,50.40,50.41,17641711,C,112,01,
2016-10-14 10:45:44.215042,50.40,1,261169,50.39,50.40,17641620,C,112,01,
2016-10-14 10:45:44.215042,50.40,2,261168,50.39,50.40,17641620,C,112,01,
2016-10-14 10:45:44.215042,50.40,2,261166,50.39,50.40,17641620,C,112,01,
2016-10-14 10:45:44.214641,50.40,1,261164,50.39,50.40,17641614,C,112,01,
2016-10-14 10:45:43.969094,50.40,1,261163,50.39,50.40,17641545,C,112,01,
2016-10-14 10:45:43.543962,50.40,3,261162,50.40,50.41,17641388,C,112,01,
2016-10-14 10:45:43.258752,50.40,1,261159,50.39,50.40,17641313,C,112,01,
2016-10-14 10:45:43.258752,50.40,1,261158,50.39,50.40,17641313,C,112,01,
2016-10-14 10:45:43.245714,50.40,2,261157,50.40,50.41,17641233,C,112,01,
2016-10-14 10:45:43.245714,50.40,1,261155,50.40,50.41,17641233,C,112,01,
2016-10-14 10:45:43.245714,50.40,1,261154,50.40,50.41,17641233,C,112,01,
2016-10-14 10:45:43.245714,50.40,1,261153,50.40,50.41,17641233,C,112,01,
2016-10-14 10:45:43.245714,50.40,6,261152,50.40,50.41,17641233,C,112,01,
2016-10-14 10:45:43.245398,50.40,1,261146,50.40,50.41,17641229,C,112,01,
2016-10-14 10:45:43.245398,50.40,1,261145,50.40,50.41,17641229,C,112,01,
2016-10-14 10:45:43.245398,50.40,1,261144,50.40,50.41,17641229,C,112,01,
2016-10-14 10:45:43.245398,50.40,1,261143,50.40,50.41,17641229,C,112,01,
2016-10-14 10:45:43.245398,50.40,4,261142,50.40,50.41,17641229,C,112,01,
2016-10-14 10:45:43.245031,50.40,1,261138,50.40,50.41,17641225,C,112,01,
2016-10-14 10:45:42.957152,50.40,1,261137,50.40,50.41,17641200,C,112,01,
2016-10-14 10:45:42.812848,50.40,1,261136,50.40,50.41,17641196,C,112,01,
2016-10-14 10:45:42.307543,50.40,1,261135,50.40,50.41,17641135,C,112,01,
2016-10-14 10:45:40.939007,50.40,1,261134,50.40,50.41,17641114,C,112,01,
2016-10-14 10:45:40.892866,50.40,1,261133,50.40,50.41,17641099,C,112,01,
2016-10-14 10:45:40.848057,50.40,2,261132,50.40,50.41,17641087,C,112,01,
2016-10-14 10:45:40.844741,50.40,1,261130,50.40,50.41,17641079,C,112,01,
2016-10-14 10:45:40.802809,50.40,1,261129,50.40,50.41,17641066,C,112,01,
2016-10-14 10:45:40.074923,50.40,2,261128,50.40,50.41,17641057,C,112,01,
2016-10-14 10:45:40.074923,50.40,1,261126,50.40,50.41,17641057,C,112,01,
2016-10-14 10:45:39.422564,50.40,1,261125,50.40,50.41,17641044,C,112,01,
2016-10-14 10:45:39.181578,50.40,1,261124,50.40,50.41,17641031,C,112,01,
2016-10-14 10:45:38.811193,50.41,1,261123,50.40,50.41,17641012,C,112,01,
2016-10-14 10:45:38.504311,50.40,1,261122,50.40,50.41,17640945,C,112,01,
2016-10-14 10:45:38.434276,50.41,1,261121,50.40,50.41,17640928,C,112,01,
2016-10-14 10:45:38.423409,50.41,2,261120,50.41,50.42,17640887,C,112,01,
2016-10-14 10:45:37.850994,50.41,2,261118,50.40,50.41,17640842,C,112,01,
2016-10-14 10:45:37.849608,50.41,1,261116,50.41,50.42,17640831,C,112,01,
2016-10-14 10:45:37.458575,50.41,1,261115,50.40,50.41,17640670,C,112,01,
2016-10-14 10:45:36.851087,50.40,1,261114,50.40,50.42,17640623,C,112,01,
2016-10-14 10:45:36.451908,50.41,1,261112,50.41,50.42,17640505,C,112,01,
2016-10-14 10:45:36.392146,50.41,2,261111,50.40,50.41,17640415,C,112,01,
2016-10-14 10:45:36.392021,50.41,1,261109,50.40,50.41,17640410,C,112,8D,
2016-10-14 10:45:36.392021,50.41,1,261108,50.40,50.41,17640410,C,112,01,
2016-10-14 10:45:36.392021,50.41,1,261107,50.40,50.41,17640410,C,112,01,
2016-10-14 10:45:36.392021,50.41,1,261106,50.40,50.41,17640410,C,112,01,
2016-10-14 10:45:36.392021,50.41,7,261105,50.40,50.41,17640410,C,112,01,
2016-10-14 10:45:36.392021,50.41,1,261098,50.40,50.41,17640410,C,112,01,
2016-10-14 10:45:36.392021,50.41,2,261097,50.40,50.41,17640410,C,112,01,
2016-10-14 10:45:36.392021,50.41,3,261095,50.40,50.41,17640410,C,112,01,
2016-10-14 10:45:36.392021,50.41,1,261092,50.40,50.41,17640410,C,112,01,
2016-10-14 10:45:34.154580,50.40,1,261091,50.40,50.41,17640293,C,112,01,
2016-10-14 10:45:33.534378,50.40,2,261090,50.40,50.41,17640285,C,112,01,
2016-10-14 10:45:30.985906,50.40,1,261088,50.40,50.41,17640261,C,112,01,
2016-10-14 10:45:30.785972,50.41,1,261087,50.40,50.41,17640248,C,112,01,
2016-10-14 10:45:29.693886,50.41,1,261086,50.41,50.42,17640145,C,112,01,
2016-10-14 10:45:29.692739,50.42,1,261085,50.40,50.42,17640132,C,112,01,
2016-10-14 10:45:29.192000,50.41,1,261083,50.41,50.42,17640097,C,112,01,
2016-10-14 10:45:29.191719,50.41,1,261081,50.41,50.42,17640092,C,112,01,
2016-10-14 10:45:28.785661,50.41,1,261078,50.41,50.42,17639910,C,112,01,
2016-10-14 10:45:28.785018,50.41,1,261077,50.41,50.42,17639904,C,112,01,
2016-10-14 10:45:28.783465,50.41,1,261076,50.41,50.42,17639889,C,112,01,
2016-10-14 10:45:28.771130,50.41,2,261075,50.41,50.42,17639816,C,112,01,
2016-10-14 10:45:28.771130,50.41,1,261073,50.41,50.42,17639816,C,112,01,
2016-10-14 10:45:28.763885,50.41,1,261072,50.41,50.42,17639766,C,112,01,
2016-10-14 10:45:28.763885,50.41,1,261071,50.41,50.42,17639766,C,112,01,
2016-10-14 10:45:28.760532,50.41,1,261070,50.41,50.42,17639743,C,112,01,
2016-10-14 10:45:28.755929,50.41,2,261069,50.41,50.42,17639707,C,112,01,
2016-10-14 10:45:27.125353,50.42,3,261067,50.42,50.43,17639582,C,112,01,
2016-10-14 10:45:27.091122,50.42,2,261064,50.42,50.43,17639498,C,112,01,
2016-10-14 10:45:27.091041,50.42,1,261062,50.42,50.43,17639495,C,112,01,
2016-10-14 10:45:27.086216,50.42,2,261061,50.42,50.43,17639445,C,112,01,
2016-10-14 10:45:27.084617,50.42,1,261059,50.41,50.42,17639431,C,112,01,
2016-10-14 10:45:27.084617,50.42,2,261058,50.41,50.42,17639431,C,112,01,
2016-10-14 10:45:27.084617,50.42,1,261056,50.41,50.42,17639431,C,112,01,
2016-10-14 10:45:27.083882,50.42,1,261055,50.41,50.42,17639425,C,112,01,
2016-10-14 10:45:27.083882,50.42,1,261054,50.41,50.42,17639425,C,112,01,
2016-10-14 10:45:27.080803,50.42,1,261053,50.41,50.42,17639402,C,112,01,
2016-10-14 10:45:27.080803,50.42,1,261052,50.41,50.42,17639402,C,112,01,
2016-10-14 10:45:27.080803,50.42,1,261051,50.41,50.42,17639402,C,112,01,
2016-10-14 10:45:27.080803,50.42,1,261050,50.41,50.42,17639402,C,112,01,
2016-10-14 10:45:27.079824,50.42,1,261049,50.41,50.42,17639393,C,112,01,
2016-10-14 10:45:27.079824,50.42,3,261048,50.41,50.42,17639393,C,112,01,
2016-10-14 10:45:27.079824,50.42,1,261045,50.41,50.42,17639393,C,112,01,
2016-10-14 10:45:27.079824,50.42,3,261044,50.41,50.42,17639393,C,112,01,
2016-10-14 10:45:27.079824,50.42,1,261041,50.41,50.42,17639393,C,112,01,
2016-10-14 10:45:27.079824,50.42,1,261040,50.41,50.42,17639393,C,112,01,
2016-10-14 10:45:25.554752,50.41,3,261035,50.41,50.42,17639321,C,112,01,
2016-10-14 10:45:25.554752,50.41,1,261032,50.41,50.42,17639321,C,112,01,
2016-10-14 10:45:25.554026,50.41,1,261031,50.41,50.42,17639314,C,112,01,
2016-10-14 10:45:25.554026,50.41,3,261030,50.41,50.42,17639314,C,112,01,
2016-10-14 10:45:25.554026,50.41,1,261027,50.41,50.42,17639314,C,112,01,
2016-10-14 10:45:24.413929,50.41,2,261026,50.41,50.42,17639266,C,112,01,
2016-10-14 10:45:24.413929,50.41,1,261024,50.41,50.42,17639266,C,112,01,
2016-10-14 10:45:23.658507,50.42,1,261023,50.41,50.42,17639239,C,112,01,
2016-10-14 10:45:23.658493,50.42,1,261022,50.41,50.42,17639238,C,112,01,
2016-10-14 10:45:21.029646,50.41,1,260994,50.41,50.42,17639191,C,112,01,
2016-10-14 10:45:20.951547,50.41,1,260993,50.41,50.42,17639187,C,112,01,
2016-10-14 10:45:20.909841,50.41,1,260992,50.41,50.42,17639179,C,112,01,
2016-10-14 10:45:20.815447,50.41,1,260991,50.41,50.42,17639169,C,112,01,
2016-10-14 10:45:20.616294,50.41,1,260990,50.41,50.42,17639134,C,112,01,
2016-10-14 10:45:20.387087,50.41,1,260967,50.41,50.42,17638960,C,112,01,
2016-10-14 10:45:20.384770,50.41,1,260960,50.41,50.42,17638944,C,112,01,
2016-10-14 10:45:20.382963,50.41,1,260959,50.40,50.41,17638929,C,112,01,
2016-10-14 10:45:20.382654,50.41,5,260958,50.40,50.41,17638923,C,112,8D,
2016-10-14 10:45:20.382654,50.41,1,260953,50.40,50.41,17638923,C,112,8D,
2016-10-14 10:45:20.382654,50.41,4,260952,50.40,50.41,17638923,C,112,01,
2016-10-14 10:45:20.373960,50.41,2,260941,50.40,50.41,17638881,C,112,01,
2016-10-14 10:45:20.373457,50.41,1,260939,50.40,50.41,17638873,C,112,8D,
2016-10-14 10:45:20.373457,50.41,1,260938,50.40,50.41,17638873,C,112,8D,
2016-10-14 10:45:20.373457,50.41,2,260937,50.40,50.41,17638873,C,112,8D,
2016-10-14 10:45:20.373457,50.41,1,260935,50.40,50.41,17638873,C,112,8D,
2016-10-14 10:45:20.373457,50.41,1,260934,50.40,50.41,17638873,C,112,8D,
2016-10-14 10:45:20.373457,50.41,1,260933,50.40,50.41,17638873,C,112,01,
2016-10-14 10:45:20.373457,50.41,4,260932,50.40,50.41,17638873,C,112,01,
2016-10-14 10:45:20.373457,50.41,1,260928,50.40,50.41,17638873,C,112,01,
2016-10-14 10:45:20.371283,50.41,1,260927,50.40,50.41,17638846,C,112,8D,
2016-10-14 10:45:20.371283,50.41,1,260926,50.40,50.41,17638846,C,112,01,
2016-10-14 10:45:20.371283,50.41,1,260925,50.40,50.41,17638846,C,112,01,
2016-10-14 10:45:20.371283,50.41,1,260924,50.40,50.41,17638846,C,112,01,
2016-10-14 10:45:20.371283,50.41,1,260923,50.40,50.41,17638846,C,112,01,
2016-10-14 10:45:20.371283,50.41,1,260922,50.40,50.41,17638846,C,112,01,
2016-10-14 10:45:20.371283,50.41,1,260921,50.40,50.41,17638846,C,112,01,
2016-10-14 10:45:20.370983,50.41,1,260920,50.40,50.41,17638840,C,112,01,
2016-10-14 10:45:20.370983,50.41,1,260919,50.40,50.41,17638840,C,112,01,
2016-10-14 10:45:20.370983,50.41,1,260918,50.40,50.41,17638840,C,112,01,
2016-10-14 10:45:20.370761,50.41,1,260917,50.40,50.41,17638837,C,112,01,
2016-10-14 10:45:20.370761,50.41,1,260916,50.40,50.41,17638837,C,112,01,
2016-10-14 10:45:20.370672,50.41,1,260915,50.40,50.41,17638834,C,112,01,
2016-10-14 10:45:20.369454,50.41,1,260914,50.40,50.41,17638822,C,112,01,
2016-10-14 10:45:20.369454,50.41,1,260913,50.40,50.41,17638822,C,112,01,
2016-10-14 10:45:20.368896,50.41,2,260894,50.40,50.41,17638815,C,112,01,
2016-10-14 10:45:20.347053,50.41,1,260756,50.40,50.41,17638597,C,112,01,
2016-10-14 10:45:20.346640,50.41,1,260755,50.40,50.41,17638591,C,112,01,
2016-10-14 10:45:20.345872,50.41,1,260754,50.40,50.41,17638581,C,112,01,
2016-10-14 10:45:20.345373,50.41,1,260753,50.41,50.42,17638571,C,112,01,
2016-10-14 10:45:20.345373,50.41,2,260752,50.41,50.42,17638571,C,112,01,
2016-10-14 10:45:20.343924,50.41,1,260749,50.40,50.41,17638557,C,112,01,
2016-10-14 10:45:20.337300,50.41,1,260746,50.41,50.42,17638512,C,112,01,
2016-10-14 10:45:20.336407,50.41,1,260745,50.40,50.41,17638501,C,112,8D,
2016-10-14 10:45:20.336407,50.41,1,260744,50.40,50.41,17638501,C,112,01,
2016-10-14 10:45:20.336407,50.41,1,260743,50.40,50.41,17638501,C,112,01,
2016-10-14 10:45:20.336407,50.41,1,260742,50.40,50.41,17638501,C,112,01,
2016-10-14 10:45:20.336407,50.41,1,260741,50.40,50.41,17638501,C,112,01,
2016-10-14 10:45:20.336407,50.41,1,260740,50.40,50.41,17638501,C,112,01,
2016-10-14 10:45:20.336407,50.41,2,260739,50.40,50.41,17638501,C,112,01,
2016-10-14 10:45:20.332466,50.41,4,260726,50.39,50.41,17638471,C,112,01,
2016-10-14 10:45:20.331922,50.41,1,260722,50.39,50.41,17638464,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260721,50.41,50.42,17638455,C,112,8D,
2016-10-14 10:45:20.331200,50.40,1,260720,50.41,50.42,17638455,C,112,8D,
2016-10-14 10:45:20.331200,50.40,2,260719,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260717,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260716,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260715,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260714,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,10,260713,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260703,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,3,260702,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260699,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260698,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260697,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260696,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260695,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260694,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260693,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260692,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260691,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260690,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260689,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260688,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,2,260687,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260685,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260684,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260683,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260682,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260681,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.40,1,260680,50.41,50.42,17638455,C,112,01,
2016-10-14 10:45:20.331200,50.41,1,260679,50.41,50.42,17638454,C,112,01,
2016-10-14 10:45:20.330906,50.41,1,260678,50.41,50.42,17638451,C,112,01,
2016-10-14 10:45:20.329990,50.41,1,260676,50.41,50.42,17638445,C,112,01,
2016-10-14 10:45:20.329563,50.41,6,260675,50.40,50.41,17638440,C,112,01,
2016-10-14 10:45:20.329396,50.41,2,260669,50.40,50.41,17638435,C,112,8D,
2016-10-14 10:45:20.329396,50.41,2,260667,50.40,50.41,17638435,C,112,8D,
2016-10-14 10:45:20.329396,50.41,2,260665,50.40,50.41,17638435,C,112,01,
2016-10-14 10:45:20.329396,50.41,1,260663,50.40,50.41,17638435,C,112,01,
2016-10-14 10:45:20.329396,50.41,1,260662,50.40,50.41,17638435,C,112,01,
2016-10-14 10:45:20.328290,50.41,1,260661,50.40,50.41,17638424,C,112,01,
2016-10-14 10:45:20.328290,50.41,4,260660,50.40,50.41,17638424,C,112,01,
2016-10-14 10:45:20.326760,50.41,2,260645,50.40,50.41,17638410,C,112,01,
2016-10-14 10:45:20.325159,50.41,1,260643,50.40,50.41,17638404,C,112,01,
2016-10-14 10:45:20.322915,50.41,4,260637,50.40,50.41,17638396,C,112,01,
2016-10-14 10:45:20.322915,50.41,1,260633,50.40,50.41,17638396,C,112,01,
2016-10-14 10:45:20.320063,50.41,2,260632,50.40,50.41,17638388,C,112,01,
2016-10-14 10:45:20.317886,50.41,1,260630,50.40,50.41,17638379,C,112,01,
2016-10-14 10:45:20.317886,50.41,1,260629,50.40,50.41,17638379,C,112,01,
2016-10-14 10:45:20.317886,50.41,1,260628,50.40,50.41,17638379,C,112,01,
2016-10-14 10:45:20.316943,50.41,1,260627,50.40,50.41,17638371,C,112,01,
2016-10-14 10:45:20.316943,50.41,2,260626,50.40,50.41,17638371,C,112,01,
2016-10-14 10:45:20.315148,50.41,1,260624,50.40,50.41,17638344,C,112,01,
2016-10-14 10:45:20.314943,50.41,1,260623,50.40,50.41,17638340,C,112,01,
2016-10-14 10:45:20.311232,50.41,1,260612,50.40,50.41,17638290,C,112,01,
2016-10-14 10:45:20.306665,50.41,2,260347,50.40,50.41,17638254,C,112,01,
2016-10-14 10:45:20.305475,50.40,1,260329,50.41,50.42,17638241,C,112,01,
2016-10-14 10:45:20.305428,50.40,1,260328,50.41,50.42,17638240,C,112,01,
2016-10-14 10:45:20.305413,50.40,1,260327,50.41,50.42,17638239,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260326,50.41,50.42,17638238,C,112,8D,
2016-10-14 10:45:20.305341,50.41,10,260325,50.41,50.42,17638238,C,112,8D,
2016-10-14 10:45:20.305341,50.41,3,260315,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260312,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260311,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,2,260310,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260308,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260307,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260306,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260305,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260304,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260303,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,2,260302,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260300,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,3,260299,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260296,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260295,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,2,260294,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260292,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:20.305341,50.41,1,260291,50.41,50.42,17638238,C,112,01,
2016-10-14 10:45:19.993963,50.42,1,258856,50.41,50.42,17638161,C,112,01,
2016-10-14 10:45:19.561961,50.42,1,258855,50.42,50.43,17638118,C,112,01,
2016-10-14 10:45:19.558311,50.42,1,258854,50.42,50.43,17638114,C,112,01,
2016-10-14 10:45:19.477816,50.42,1,258853,50.41,50.42,17638096,C,112,01,
2016-10-14 10:45:19.477497,50.42,1,258852,50.41,50.42,17638093,C,112,01,
2016-10-14 10:45:19.346892,50.42,1,258851,50.42,50.43,17637995,C,112,01,
2016-10-14 10:45:19.346497,50.42,1,258850,50.42,50.43,17637991,C,112,01,
2016-10-14 10:45:19.346327,50.42,1,258849,50.42,50.43,17637986,C,112,01,
2016-10-14 10:45:19.338353,50.42,1,258848,50.42,50.43,17637937,C,112,01,
2016-10-14 10:45:19.338353,50.42,1,258847,50.42,50.43,17637937,C,112,01,
2016-10-14 10:45:19.337314,50.42,1,258846,50.41,50.42,17637927,C,112,01,
2016-10-14 10:45:19.336330,50.42,2,258845,50.42,50.43,17637912,C,112,01,
2016-10-14 10:45:19.332331,50.42,3,258843,50.42,50.43,17637885,C,112,01,
2016-10-14 10:45:19.331615,50.42,2,258840,50.42,50.43,17637877,C,112,01,
2016-10-14 10:45:19.330205,50.42,3,258838,50.41,50.42,17637863,C,112,01,
2016-10-14 10:45:19.330205,50.42,1,258835,50.41,50.42,17637863,C,112,01,
2016-10-14 10:45:19.330205,50.42,1,258834,50.41,50.42,17637863,C,112,01,
2016-10-14 10:45:19.329943,50.42,1,258833,50.41,50.42,17637860,C,112,01,
2016-10-14 10:45:18.433407,50.42,2,258801,50.41,50.42,17637825,C,112,01,
2016-10-14 10:45:18.433407,50.42,2,258799,50.41,50.42,17637825,C,112,01,
2016-10-14 10:45:18.433407,50.42,1,258797,50.41,50.42,17637825,C,112,01,
2016-10-14 10:45:18.173271,50.42,1,258796,50.41,50.42,17637803,C,112,01,
2016-10-14 10:45:17.997745,50.42,1,258795,50.42,50.43,17637663,C,112,01,
2016-10-14 10:45:17.997745,50.42,1,258794,50.42,50.43,17637663,C,112,01,
2016-10-14 10:45:17.997745,50.42,1,258793,50.42,50.43,17637663,C,112,01,
2016-10-14 10:45:17.997745,50.42,2,258792,50.42,50.43,17637663,C,112,01,
2016-10-14 10:45:17.997745,50.42,1,258790,50.42,50.43,17637663,C,112,01,
2016-10-14 10:45:17.997745,50.42,1,258789,50.42,50.43,17637663,C,112,01,
2016-10-14 10:45:17.997745,50.42,2,258788,50.42,50.43,17637663,C,112,01,
2016-10-14 10:45:17.997745,50.42,1,258786,50.42,50.43,17637663,C,112,01,
2016-10-14 10:45:17.997648,50.42,1,258785,50.42,50.43,17637660,C,112,01,
2016-10-14 10:45:17.997648,50.42,1,258784,50.42,50.43,17637660,C,112,01,
2016-10-14 10:45:17.997498,50.42,4,258783,50.42,50.43,17637657,C,112,01,
2016-10-14 10:45:17.996954,50.42,1,258779,50.42,50.43,17637654,C,112,01,
2016-10-14 10:45:17.996954,50.42,1,258778,50.42,50.43,17637654,C,112,01,
2016-10-14 10:45:17.996954,50.42,1,258777,50.42,50.43,17637654,C,112,01,
2016-10-14 10:45:17.996954,50.42,1,258776,50.42,50.43,17637654,C,112,01,
2016-10-14 10:45:16.871303,50.42,1,258771,50.42,50.43,17637616,C,112,01,
2016-10-14 10:45:16.871303,50.42,1,258770,50.42,50.43,17637616,C,112,01,
2016-10-14 10:45:15.637459,50.43,1,258769,50.42,50.43,17637542,C,112,01,
2016-10-14 10:45:15.637459,50.43,2,258768,50.42,50.43,17637542,C,112,01,
2016-10-14 10:45:15.637459,50.43,1,258766,50.42,50.43,17637542,C,112,01,
2016-10-14 10:45:15.637459,50.43,1,258765,50.42,50.43,17637542,C,112,01,
2016-10-14 10:45:15.637459,50.43,1,258764,50.42,50.43,17637542,C,112,01,
2016-10-14 10:45:15.061536,50.43,1,258763,50.42,50.43,17637532,C,112,01,
2016-10-14 10:45:14.781157,50.42,1,258762,50.42,50.43,17637528,C,112,01,
2016-10-14 10:45:13.798477,50.43,1,258761,50.42,50.43,17637503,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258760,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258759,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258758,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258757,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258756,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258755,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258754,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258753,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,4,258752,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,1,258748,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,2,258747,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,3,258745,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:12.683006,50.42,2,258742,50.42,50.43,17637349,C,112,01,
2016-10-14 10:45:10.838068,50.43,1,258740,50.43,50.44,17637173,C,112,01,
2016-10-14 10:45:10.584359,50.43,1,258739,50.43,50.44,17637168,C,112,01,
2016-10-14 10:45:09.241673,50.43,1,258734,50.42,50.43,17637090,C,112,01,
2016-10-14 10:45:09.234077,50.43,1,258733,50.43,50.44,17637062,C,112,01,
2016-10-14 10:45:09.221388,50.43,1,258732,50.43,50.44,17637050,C,112,01,
2016-10-14 10:45:09.040010,50.43,1,258731,50.43,50.44,17637003,C,112,01,
2016-10-14 10:45:09.040010,50.43,1,258730,50.43,50.44,17637003,C,112,01,
2016-10-14 10:45:09.039763,50.43,1,258729,50.43,50.44,17636996,C,112,01,
2016-10-14 10:45:09.038823,50.43,1,258728,50.42,50.43,17636982,C,112,01,
2016-10-14 10:45:09.038823,50.43,3,258727,50.42,50.43,17636982,C,112,01,
2016-10-14 10:45:09.009886,50.43,1,258724,50.43,50.44,17636940,C,112,01,
2016-10-14 10:45:09.009886,50.43,1,258723,50.43,50.44,17636940,C,112,01,
2016-10-14 10:45:09.009790,50.43,1,258722,50.43,50.44,17636937,C,112,01,
2016-10-14 10:45:09.008802,50.43,1,258721,50.43,50.44,17636931,C,112,01,
2016-10-14 10:45:09.008726,50.43,4,258720,50.43,50.44,17636928,C,112,01,
2016-10-14 10:45:07.851577,50.43,1,258716,50.43,50.44,17636869,C,112,01,
2016-10-14 10:45:06.241905,50.43,1,258714,50.43,50.44,17636759,C,112,01,
2016-10-14 10:45:06.241905,50.43,1,258713,50.43,50.44,17636759,C,112,01,
2016-10-14 10:45:06.241905,50.43,3,258712,50.43,50.44,17636759,C,112,01,
2016-10-14 10:45:04.881476,50.43,1,258709,50.43,50.44,17636724,C,112,01,
2016-10-14 10:45:04.765123,50.44,1,258708,50.43,50.44,17636711,C,112,01,
2016-10-14 10:45:04.153300,50.43,1,258707,50.43,50.44,17636694,C,112,01,
2016-10-14 10:45:04.153283,50.43,1,258706,50.43,50.44,17636693,C,112,01,
2016-10-14 10:45:03.336652,50.44,1,258704,50.44,50.45,17636563,C,112,01,
2016-10-14 10:45:03.336652,50.44,1,258703,50.44,50.45,17636563,C,112,01,
2016-10-14 10:45:02.673515,50.44,1,258702,50.43,50.44,17636460,C,112,01,
2016-10-14 10:45:02.673161,50.44,1,258701,50.43,50.44,17636454,C,112,01,
2016-10-14 10:45:02.673161,50.44,1,258700,50.43,50.44,17636454,C,112,01,
2016-10-14 10:45:01.991477,50.44,1,258699,50.43,50.44,17636413,C,112,01,
2016-10-14 10:45:01.988800,50.44,2,258698,50.43,50.44,17636385,C,112,01,
2016-10-14 10:45:01.986131,50.44,1,258696,50.44,50.45,17636361,C,112,01,
2016-10-14 10:45:01.986131,50.44,1,258695,50.44,50.45,17636361,C,112,01,
2016-10-14 10:45:01.986131,50.44,2,258694,50.44,50.45,17636361,C,112,01,
2016-10-14 10:45:01.986131,50.44,1,258692,50.44,50.45,17636361,C,112,01,
2016-10-14 10:45:01.986131,50.44,1,258691,50.44,50.45,17636361,C,112,01,
2016-10-14 10:45:01.986039,50.44,1,258690,50.44,50.45,17636358,C,112,01,
2016-10-14 10:45:01.985740,50.44,1,258689,50.44,50.45,17636354,C,112,01,
2016-10-14 10:45:01.985740,50.44,1,258688,50.44,50.45,17636354,C,112,01,
2016-10-14 10:45:01.535167,50.44,1,258687,50.44,50.45,17636234,C,112,01,
2016-10-14 10:45:00.448087,50.44,1,258686,50.44,50.45,17636207,C,112,01,
2016-10-14 10:45:00.105872,50.44,1,258685,50.44,50.45,17636181,C,112,01,
2016-10-14 10:45:00.105872,50.44,1,258684,50.44,50.45,17636181,C,112,01,

!ENDMSG!,




sum up trade size will get interval vol 683
but another way, total vol of last tick - total vol of first tick = 2712

what is the reason of the big difference ? or what mistake i made in these calculation?
Edited by milcloud on Oct 14, 2016 at 10:29 AM

DTN_Tim Walter
-DTN Guru-
Posts: 1238
Joined: Apr 25, 2006


Posted: Oct 14, 2016 12:29 PM          Msg. 7 of 7
This is because the cumulative volume you are looking at only reflects the volumes traded specifically on the underlying contract. Whereas, the other number you are viewing is total volume and is reported by the exchange. This total volume can include volume on other related instruments such as; spreads, butterflies, and other external sources that will not be visible in the tick data, hence the mismatch.

Tim
 

 

Time: Fri April 26, 2024 7:14 AM CFBB v1.2.0 12 ms.
© AderSoftware 2002-2003