Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Getting a value to who in DataBox
Collapse
X
-
Getting a value to who in DataBox
How do I do this? I have a function in my strategy that does a calculation, and I would like for it to show up in the DataBox. Do I have to create an indicator in order for this to happen? It's just a function. Point me in the right direction please.Tags: None
-
imported post
Ok, this is my code generated from wizard. On my onBarUpdate() I have these lines of code:
double d = 0;
d = (((CCI(6)[0] - CCI(14)[0]) / (CCI(6)[1] - CCI(14)[1]))) * 100;
Value.Set(d);
Basically, just calculating percentage. I would like the value of "d" to show up in the DataBox. Right now, it's not working.
Comment
-
imported post
Ok, it's because I'm trying to access the data one bar ago for this calculation. The logs say "index out of bounds". Check the code below. So, what does that mean for me? There's plenty of bars on the chart. Does that mean that the indicator does not have access to those? Don't understand.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
571 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
548 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
549 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment