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 charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      68 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      150 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      162 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      100 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      288 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X