Ninja Zen no more unfiltered data?

Discussion in 'Data Sets and Feeds' started by RandomX, Feb 3, 2010.

  1. ET873

    ET873

    Also, the clock skew / inaccurate timing issue discussed earlier should not matter. The timestamp should be taken from the data feed, not the time on the local PC.
     
    #71     Feb 15, 2010
  2. I have Level 1 abstraction layer that is fine for the three feeds I have supported so far - IB TWS, OpenTick (now defunct) and DTN IQFeed. Each tick results in a tick event (eg last, bid, last size etc etc). Tick listeners register themselves to receive tick events in the Java style of event listeners. Most stuff is decoupled from the tick data receive thread via tick event queues and quite extensive threading.

    It is easily fast enough. Monitoring 500 stocks and some futures, and even with flashing "christmas tree" quote sheets, alarms, charting, 4 screens, modest video cards etc etc, a Q9550 is still loafing along. Even in a fast market it's still 70%+ idle. I'm certain that most of the CPU utilization is in the AWT event processing thread doing GUI things.

    Java is the biz for this stuff. If I was using C++ it would have taken far longer.
     
    #72     Feb 15, 2010
  3. If it has one. IB TWS doesn't.
     
    #73     Feb 15, 2010
  4. Bid and Ask Offers are constantly changing and the exchange only time stamps the last trade which could be seconds past the instant real time or even minutes for thinner traded instruments ie M6E.

    The clock skew is just one part of the equation. Add in network latency and CPU time to process and filter the price feed. Time required to process orders and confirm fills + error checking etc.

    My point was accurately processing feeds, placing and managing orders sub 50ms is a challenge.


     
    #74     Feb 15, 2010
  5. For the purpose of this thread, the issue is whether last trade was executed at bid or ask. I can't see what clock skew, network latency or managing orders on a 50ms time frame has got to do with it.
     
    #75     Feb 15, 2010
  6. We have no favorite data provider and primarily rely on our broker supplied feeds: TT and OEC. We have used e-signal and others as independent control feeds but found our two primary broker feeds to be sufficient for our purposes.

    However, we are not focused on collecting and logging pricing data. Our focus is on real time order processing and position management. The pricing data we do collect is what we consider "executable" within the realm of our order process and capacity of our systems.

    One tool we have found particularly useful is OEC's Market Replay plug-in. Does a nice job of recording Level I quotes, Level II DOM, histograms etc. provides a decent environment to test out your trading algo's.


     
    #76     Feb 15, 2010
  7. Thats interesting.. Does OEC have subsecond timestamp within the plug-in ? How accurate it is? 50ms?
     
    #77     Feb 15, 2010
  8. For purposes of collecting and logging pricing data it makes no difference other than the accuracy of a time stamp.

     
    #78     Feb 15, 2010
  9. #79     Feb 15, 2010
  10. The exchange time stamps are in full seconds.
    Replay speed is adjustable from 1/10 to 100x.
    Not sure what their data sample rate are... guessing 100ms.

     
    #80     Feb 15, 2010