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 Mindset, Today, 06:46 AM
|
0 responses
8 views
0 likes
|
Last Post
by Mindset
Today, 06:46 AM
|
||
|
Started by M4ndoo, Yesterday, 05:21 PM
|
0 responses
14 views
0 likes
|
Last Post
by M4ndoo
Yesterday, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
15 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
82 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
48 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment