So, what am I doing wrong?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Value[0] is throwing IndexOutOfRangeException.
Collapse
X
-
Value[0] is throwing IndexOutOfRangeException.
I'm trying to write my first Indicator. Its extremely simple and I'm following the code path from SMA but when I step into the code in VS the this.Value isn't initialized and thus this.Value[0] is throwing an exception. I don't see anywhere within SMA source code file where Value is being initialized and the base class NinjaScriptBase defines the property as returning null.
So, what am I doing wrong? -
It might help better if you just posted the code, so that someone can see what is wrong.Originally posted by Kabua View PostI'm trying to write my first Indicator. Its extremely simple and I'm following the code path from SMA but when I step into the code in VS the this.Value isn't initialized and thus this.Value[0] is throwing an exception. I don't see anywhere within SMA source code file where Value is being initialized and the base class NinjaScriptBase defines the property as returning null.
So, what am I doing wrong?
-
Welcome to the forums Kabua!
It sounds like the indicator is missing AddPlot().
I suggest using the New Indicator Wizard (NinjaScript Editor > Indicators folder > Right Click > New Indicator) as it can conveniently add all the code necessary for plots. I have also included a link to our AddPlot() documentation which can be referenced for creating working plots.
AddPlot() - https://ninjatrader.com/support/help...s/?addplot.htm
As koganam mentions, attaching the code can help us to understand exactly what you are running into.
I look forward to being of further assistance.
Comment
-
Yes, me bad. I wasn't sure what was the difference between AddPlot and AddLine when I went through the wizard. Therefore, I choose AddLine but it appears what I really wanted was AddPlot, once I changed the code to AddPlot the Value property was properly initialized. Thanks.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
576 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 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
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment