Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Why MarketDepth event lags 20 sec behind SuperDom?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Why MarketDepth event lags 20 sec behind SuperDom?

    I'm evaluating your platform, I'd like to build custom low latency trading strategy for DOM and also custom view of DOM. I just did a simple test, hooking up the MarketDepth Update event
    and printing the top Ask on in the Output tab. It works but the output terribly lags, about 20 second or so behind the Static SuperDom screen
    That makes the OnMarketDepth event out of synch with SuperDom and totally unusable

    How can I get the full market depth with the same speed and data as the SuperDom?

    Is there a throttling going on somewhere? How is SuperDom getting its data? Different event?

    Here's my simple code, I used NinjaTrader.NinjaScript.AddOnBase as the base

    var instrument = Instrument.GetInstrument("ES 12-18");
    marketDepth = new MarketDepth<MarketDepthRow>(instrument);
    marketDepth.Update += OnMarketDepth;

    private void OnMarketDepth(object sender, MarketDepthEventArgs e)
    {
    NinjaTrader.Code.Output.Process(string.Format("Pos ition: {0} Price: {1} Volume: {2}", 0,

    marketDepth.Asks[0].Price, marketDepth.Asks[0].Volume), PrintTo.OutputTab1);


    }
    Last edited by quantrob; 11-27-2018, 11:22 PM.

    #2
    Hello quantrob,

    We'd like to look further into this.

    Please send an email to platformsupport [at] ninjatrader [dot] com so that we may request your log and trace files as well as your workspace.

    In the email please include a link to this forum thread.
    Last edited by NinjaTrader_ChelseaB; 11-28-2018, 09:00 AM.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by brucerobinson, Yesterday, 07:08 AM
    5 responses
    36 views
    0 likes
    Last Post brucerobinson  
    Started by reginaldgarcia, Today, 04:00 AM
    0 responses
    3 views
    0 likes
    Last Post reginaldgarcia  
    Started by dominikstiffel, Today, 03:56 AM
    0 responses
    8 views
    0 likes
    Last Post dominikstiffel  
    Started by gustavobp, Today, 02:50 AM
    0 responses
    7 views
    0 likes
    Last Post gustavobp  
    Started by rubiijonson, Today, 01:02 AM
    0 responses
    5 views
    0 likes
    Last Post rubiijonson  
    Working...
    X