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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
81 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
66 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
54 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment