Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Level 2 question
Collapse
X
-
Hello sergey_z,
Thanks for your question.
When I test a dummy indicator on the Playback Connection that adds OnMarketData and prints MarketDataEvents.Time, Time updates in sync with the Playback Connection even when at Max Playback.
Do you mean that there is some code within OnMarketData that is slowing down the Playback Connection? I may then recommend reducing the number of operations done in OnMarketData as it will be called very frequently, especially at increased Playback speeds.
If this does not resolve your inquiry, could you further elaborate on how time is changing slowly and if performing less operations in OnMarketData effects the playback speed?
I look forward to being of any further assistance.
Comment
-
OnMarketData my code is:
if ( marketDataUpdate.MarketDataType == MarketDataType.LastClose )
{
Price_LastBarofSession = marketDataUpdate.Price;
Print("Price_LastBarofSession = " + Price_LastBarofSession);
}
On MAX speed every real second I can simulate only +-5minutes. So time change very slow. Without this block - fast like it have to be.
Comment
-
Hello sergey_z,
When I test without the block of code (dummy indicator) I can move through a day of Market Replay Data (ES 12-18) in approximately 20 seconds. When I test with the block of code, I do not see a noticeable difference in performance. Are you certain that this block is impacting your performance? If so, could you provide test scripts that we could test on our end to observe?
OnMarketData will be called from an Instrument thread and the performance would be capped to what one core can handle. You may be hitting a bottleneck for how much you can push through the Playback Connection.
My recommendation would be to test certain parts of your code disabled/enabled in an effort to see:
1) What the best case performance would be for a dummy indicator
2) Which sections of your strategy are impacting performance if you can achieve better performance with 1)
If there is anything else I can do to help, please let me know.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
62 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
134 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
75 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
50 views
0 likes
|
Last Post
|

Comment