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 CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
26 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
26 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|
||
|
Started by CaptainJack, 03-25-2026, 09:53 PM
|
0 responses
30 views
0 likes
|
Last Post
by CaptainJack
03-25-2026, 09:53 PM
|
||
|
Started by CaptainJack, 03-25-2026, 09:51 PM
|
0 responses
18 views
0 likes
|
Last Post
by CaptainJack
03-25-2026, 09:51 PM
|
||
|
Started by Mindset, 03-23-2026, 11:13 AM
|
0 responses
29 views
0 likes
|
Last Post
by Mindset
03-23-2026, 11:13 AM
|

Comment