Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

fail to compile CS1061

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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:
    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
    }

    #2
    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:

    Code:
    #region Properties
    [Browsable(false)]
    [XmlIgnore]
    public Series<double> DoubleSeries
    {
    get { return doubleSeries; }
    }
    #endregion
    Please let us know if we may be of further assistance to you.

    Comment


      #3
      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?

      Thanks
      Last 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 Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      370 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      109 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      574 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      577 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X