Add(new Plot(Color.FromKnownColor(KnownColor.Yellow), PlotStyle.Line, "PlotClose"));//jm at line 35 I get error CS0103 'the name PlotClose does not exist in the current context'. however I expected line 35 to declare it's existence. The source code is attached. Help will be much appreciate
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
PlotClose does not exist in the current context?
Collapse
X
-
PlotClose does not exist in the current context?
When I add PlotClose.Set(Close[0]); at line 49 and
Add(new Plot(Color.FromKnownColor(KnownColor.Yellow), PlotStyle.Line, "PlotClose"));//jm at line 35 I get error CS0103 'the name PlotClose does not exist in the current context'. however I expected line 35 to declare it's existence. The source code is attached. Help will be much appreciateTags: None
-
whoops looks like PlotClose.Set(Close[0]); at line 49 was not included in the attachment. maybe because it had not compiled?
it was added to the onbarupdate region as follows:
protectedoverridevoid OnBarUpdate()
{
if (CurrentBar < 2) return;//jm MUST .....
// Use this method for calculating your indicator values. Assign a value to each
// plot below by replacing 'Close[0]' with your own formula.
//PlotHAO.Set(Close[0]);
PlotHAO.Set(((PlotHAO[1]+joeHACindicator3(1)[1])/2));//jm
PlotClose.Set(Close[0]);
}
-
Hello joemiller,
Thank you for your post.
You have not set the values of this DataSeries object in the properties section. You will need to add the PlotCose just as you have the PlotHAO but change the Values to Values[1]:
Please let me know if I may be of further assistance.Code:[Browsable(false)] // this line prevents the data series from being displayed in the indicator properties dialog, do not remove [XmlIgnore()] // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove public DataSeries PlotHAO { get { return Values[0]; } } [Browsable(false)] // this line prevents the data series from being displayed in the indicator properties dialog, do not remove [XmlIgnore()] // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove public DataSeries PlotClose { get { return Values[1]; } }
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