public class TestDoubleSeries : Indicator
{
private Series<double> doubleSeries;
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Description = @"why is this not compiling";
Name = "TestDoubleSeries";
Calculate = Calculate.OnBarClose;
IsOverlay = false;
DisplayInDataBox = true;
DrawOnPricePanel = true;
DrawHorizontalGridLines = true;
DrawVerticalGridLines = true;
PaintPriceMarkers = true;
ScaleJustification = NinjaTrader.Gui.Chart.ScaleJustification.Right;
IsSuspendedWhileInactive = true;
}
else if (State == State.DataLoaded)
{
doubleSeries = new Series<double>(this, MaximumBarsLookBack.Infinite);
}
}
protected override void OnBarUpdate()
{
doubleSeries[0] = 1.0;
}
#region Properties
[Browsable(false)]
[XmlIgnore]
public Series<double> State
{
get { return doubleSeries; }
}
#endregion
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
fail to compile CS1061
Collapse
X
-
fail to compile CS1061
There is a something wrong in this code, it fails to compile with CS1061. Something to do with the property? Just can't can't see the issue.
Code:Tags: None
-
Hello lavalampmj,
Thank you for your post.
The issue is calling your public property State, which is basically keeping the references to the actual indicator State in OnStateChange() from working.
If you change it so the public series is just named DoubleSeries (uppercase D), that should work for you:
Please let us know if we may be of further assistance to you.Code:#region Properties [Browsable(false)] [XmlIgnore] public Series<double> DoubleSeries { get { return doubleSeries; } } #endregion
-
Thanks so much. Sometimes, you can't see "wood for the trees"!
I now see that there is a Ninjascript.State property (used in the OnStateChange() method), so calling my public series also State was the problem....
C# compiler was telling me this, by why so cryptic in the error message?
ThanksLast edited by lavalampmj; 04-29-2021, 02:56 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
651 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 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
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
577 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment