How is the data box from the chart calculating the value different from the actual data series? Clearly those two numbers are not equal right?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Is there a discrepancy between the DataSeries and the chart data box?
Collapse
X
-
Is there a discrepancy between the DataSeries and the chart data box?
I have a data series on a chart. When I hover over a bar, I see a value of 0.0000337. The next bar in the data series is 0.0000278. The 2nd is clearly less than the first. However when I test for a comparison they are considered equal.
How is the data box from the chart calculating the value different from the actual data series? Clearly those two numbers are not equal right?Tags: None
-
What I'm saying is that myDataSeries[0] and myDataSeries[1] are being tested as equal even though the data box is showing them as different values.Originally posted by Josh View PostThe Data Box will display whatever is in there. Please use Print() of your actual values to debug.
Print(myDataSeries[0] + " " + myDataSeries[1]);
Does this have something to do with the inability for computers to store proper floating point values and the introduction of some kind of rounding errors? That is why I'm wondering how NT is extracting the values to show in the data box, because they are definitely different than what is being reported by the dataseries.
I tried doing Math.Round(mds[0]) == Math.Round(mds[1]) and that resulted in a false, so there seems to be more than meets the eye here.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
234 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
150 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
162 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
243 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
198 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment