Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Market Replay Lag
Collapse
X
-
Market Replay Lag
I'm trying to run market replay with an indicator I wrote. It is running extremely slow. In addition the current time display on the market replay dialog box is staying at 9PM although the charts is now at 9:15:00. How would I go about debugging why it is breaking market replay?Tags: None
-
Hello habibalex,
Thank you for writing in.
Could you please let me know how many of the indicators are calculating on each tick?
Could you please also let me know how many indicators are being rolled up into one?
Could you please confirm that everything works when you add all the indicators to individually to the same chart at the same time?
Do you have specific steps which you can take to recreate this behavior every time or close to every time?
This information will help me to narrow down the issue.
Thank you in advance.Michael M.NinjaTrader Quality Assurance
Comment
-
Hello habibalex,
Thank you for the update. If you could send the indicator via email to platformsupport[AT]ninjatrader[DOT]com with the subject line: "ATTN Michael M : http://www.ninjatrader.com/support/forum/showthread.php?t=80297" I will investigate this further.
Thank you in advance.Michael M.NinjaTrader Quality Assurance
Comment
-
Hi Mike, I've emailed you. I also noticed that the OnMarketDepth is not updating on a live chart. I believe I have the exact same code in my group indicator as the individual one that attaches the MarketDepthEvent to the OnMarketDepth function, so I'm not really sure why that isn't working either.
Comment
-
Hi the problem has been solved over email. The issue was I had attached the marketDepth.Update to a custom OnMarketDepth function and when it was run on Historical Bars it was causing the lag.
The solution was to put this in OnBarUpdate
Code:protected override void OnBarUpdate() { if (State == State.Historical) return;
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
670 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
379 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
111 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
575 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
582 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment