Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Ninjatrader 8 missing historical tick data
Collapse
X
-
Ninjatrader 8 missing historical tick data
I tried downloading historical tick data on Ninjatrader 8 for several eurex futures. The data of may and first two weeks of june is missing. On Ninjatrader 7 it is available. I use a Ninja Trader Continuum connection.Tags: None
-
Accessing price changes inside of the bar
Hello,
I wrote this as a toy to determine the availability of price change data inside of a bar. I have read that that information is now available and stored by Ninjatrader 8. This code works as I intended live but not on historical. What do I need to do to have it work with historical data?
Crosses is a histogram, zero based that logs a count of the times price traces through the opening price;
protected override void OnBarUpdate()
{
if(IsFirstTickOfBar)count = 0;
if( !up && Close[0] > Open[0])
{
count = count + 1;
Crosses[0] = count;
up = true;
}
if( up && Close[0] < Open[0])
{
count = count + 1;
Crosses[0] = count;
up = false;
}
}
Comment
-
Hello abdunbar,
Thanks for your post.
For your code to look at tick data, in NinjaTrader 8, within a historical bar, you would need to enable "tick replay". Please see: http://ninjatrader.com/support/helpG...ick_replay.htm
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
672 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
577 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